From 36fea7f15ed17150691b5b3ead75450e575229ef Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 26 Jan 2022 21:34:26 -0800 Subject: Ran black code formatter on everything. --- smart_future.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'smart_future.py') diff --git a/smart_future.py b/smart_future.py index c097d53..8f23e77 100644 --- a/smart_future.py +++ b/smart_future.py @@ -37,9 +37,7 @@ def wait_any(futures: List[SmartFuture], *, callback: Callable = None): def wait_all(futures: List[SmartFuture]) -> None: real_futures = [x.wrapped_future for x in futures] (done, not_done) = concurrent.futures.wait( - real_futures, - timeout=None, - return_when=concurrent.futures.ALL_COMPLETED + real_futures, timeout=None, return_when=concurrent.futures.ALL_COMPLETED ) assert len(done) == len(real_futures) assert len(not_done) == 0 -- cgit v1.3