We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bab1d8 commit c4e3fb6Copy full SHA for c4e3fb6
aiohappybase/connection.py
@@ -28,7 +28,7 @@
28
29
try:
30
from thriftpy2_httpx_client import make_aio_client as make_http_client
31
-except ImportError:
+except ImportError: # pragma: no cover
32
async def make_http_client(*_, **__):
33
raise RuntimeError("thriftpy2_httpx_client is required to"
34
" use the HTTP client protocol.")
aiohappybase/sync/connection.py
@@ -20,8 +20,8 @@
20
21
22
from thriftpy2_httpx_client import make_sync_client as make_http_client
23
24
- async def make_http_client(*_, **__):
+ def make_http_client(*_, **__):
25
26
27
0 commit comments