Skip to content

Commit

Permalink
Fixing line length issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SpangleLabs committed Mar 2, 2021
1 parent d6a3585 commit 77f7032
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tqdm/asyncio.py
Expand Up @@ -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
)
]

Expand Down

0 comments on commit 77f7032

Please sign in to comment.