We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d43a6d commit 19f664eCopy full SHA for 19f664e
src/client/delphi_epidata.py
@@ -720,7 +720,7 @@ async def fetch_epidata(param_combos):
720
tasks = []
721
async with ClientSession() as session:
722
for param in param_combos:
723
- task = asyncio.ensure_future(Epidata.get(param, session))
+ task = asyncio.ensure_future(Epidata.async_get(param, session))
724
tasks.append(task)
725
responses = await asyncio.gather(*tasks)
726
return responses
0 commit comments