]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Update httpx/_transports/default.py
authorTom Christie <tom@tomchristie.com>
Thu, 28 Dec 2023 20:35:16 +0000 (20:35 +0000)
committerGitHub <noreply@github.com>
Thu, 28 Dec 2023 20:35:16 +0000 (20:35 +0000)
httpx/_transports/default.py

index 4f6bb94084a5902ed7719faafc7cdaaf3a4eb173..9e9ce90e0274d107fcd43c025779183dfcba898c 100644 (file)
@@ -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)