From 7d86e971da0e13876ec0165dab110d7e8f7d07ae Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Wed, 13 May 2026 20:24:39 +0200 Subject: [PATCH] Fix formatting. --- plugins/module_utils/_api/transport/unixconn.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/module_utils/_api/transport/unixconn.py b/plugins/module_utils/_api/transport/unixconn.py index 8ff87ddb..be019d2f 100644 --- a/plugins/module_utils/_api/transport/unixconn.py +++ b/plugins/module_utils/_api/transport/unixconn.py @@ -117,7 +117,9 @@ class UnixHTTPAdapter(BaseHTTPAdapter): return pool - def request_url(self, request: PreparedRequest, proxies: Mapping[str, str] | None) -> str: + def request_url( + self, request: PreparedRequest, proxies: Mapping[str, str] | None + ) -> str: # The select_proxy utility in requests errors out when the provided URL # does not have a hostname, like is the case when using a UNIX socket. # Since proxies are an irrelevant notion in the case of UNIX sockets