From: Tom Christie Date: Thu, 28 Dec 2023 20:35:16 +0000 (+0000) Subject: Update httpx/_transports/default.py X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b36a208b3357913bc032d01d611db57ddccec6f;p=thirdparty%2Fhttpx.git Update httpx/_transports/default.py --- diff --git a/httpx/_transports/default.py b/httpx/_transports/default.py index 4f6bb940..9e9ce90e 100644 --- a/httpx/_transports/default.py +++ b/httpx/_transports/default.py @@ -276,7 +276,8 @@ class AsyncHTTPTransport(AsyncBaseTransport): import sniffio # noqa: F401 except ImportError: # pragma: nocover raise RuntimeError( - "Using httpx in async mode, but neither httpx['asyncio'] or asyncio['trio'] is installed." + "Using httpx in async mode, but neither " + "httpx['asyncio'] or asyncio['trio'] is installed." ) ssl_context = create_ssl_context(verify=verify, cert=cert, trust_env=trust_env)