🚨 auto fix by pre-commit hooks

This commit is contained in:
pre-commit-ci[bot] 2025-06-20 07:13:37 +00:00
parent a1512922e5
commit 52abeff343

View File

@ -52,12 +52,8 @@ def get_async_client(
elif proxy: elif proxy:
return httpx.AsyncClient( return httpx.AsyncClient(
mounts={ mounts={
"http://": AsyncHTTPTransport( "http://": AsyncHTTPTransport(proxy=Proxy(proxy)),
proxy=Proxy(proxy) "https://": AsyncHTTPTransport(proxy=Proxy(proxy)),
),
"https://": AsyncHTTPTransport(
proxy=Proxy(proxy)
),
}, },
transport=transport, transport=transport,
**kwargs, **kwargs,