diff --git a/tqdm/asyncio.py b/tqdm/asyncio.py index 71c22f9b9..5d25749ad 100644 --- a/tqdm/asyncio.py +++ b/tqdm/asyncio.py @@ -89,7 +89,11 @@ async def wrap_awaitable(number: int, awaitable: Awaitable[T]): numbered_results = [ await f for f in cls.as_completed( - numbered_awaitables, total=total, loop=loop, timeout=timeout, **tqdm_kwargs + numbered_awaitables, + total=total, + loop=loop, + timeout=timeout, + **tqdm_kwargs ) ]