Fix formatting

- reorder imports
- fix line length
This commit is contained in:
Joshua Coales 2021-03-02 10:18:53 +00:00 committed by Casper da Costa-Luis
parent 644fd81bce
commit 82e0851f63
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
1 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@ Usage:
... ...
"""
import asyncio
from typing import Awaitable, TypeVar, List
from typing import Awaitable, List, TypeVar
from .std import tqdm as std_tqdm
@ -89,7 +89,11 @@ class tqdm_asyncio(std_tqdm):
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
)
]