From 82e0851f6306de59ab8313ebe6e538e9631e375e Mon Sep 17 00:00:00 2001 From: Joshua Coales Date: Tue, 2 Mar 2021 10:18:53 +0000 Subject: [PATCH] Fix formatting - reorder imports - fix line length --- tqdm/asyncio.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tqdm/asyncio.py b/tqdm/asyncio.py index 0d527916..5d25749a 100644 --- a/tqdm/asyncio.py +++ b/tqdm/asyncio.py @@ -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 ) ]