Why Is My asyncio Script with aiohttp Hanging on Concurrent URL Fetches?

Hello,

curious:

Can you instead try passing in the arguments explicitly (not sure if I am entering it correctly but try other than entering a list - you can even first try with one entry as a starting point):

results = await asyncio.gather(tasks[0](), tasks[1](), tasks[2]())

From a previous post, they were having a similar experience.