Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,7 @@ def __repr__(self):

async def _request(**request_params) -> httpx.Response:
async with httpx.AsyncClient(
verify=request_params.pop("verify", True)
verify=request_params.pop("verify", True),
timeout=request_params.pop("timeout", httpx.Timeout(600.0)),
) as client:
return await client.request(**request_params)