update httpx with AsyncClient

This commit is contained in:
checktheroads 2020-03-20 22:15:48 -07:00
parent c255691871
commit cd454d5ca1

View file

@ -275,7 +275,7 @@ class Connect:
log.debug(f"URL endpoint: {endpoint}")
try:
async with httpx.Client(**client_params) as http_client:
async with httpx.AsyncClient(**client_params) as http_client:
responses = []
for query in self.query: