summaryrefslogtreecommitdiff
path: root/smart_future.py
diff options
context:
space:
mode:
Diffstat (limited to 'smart_future.py')
-rw-r--r--smart_future.py4
1 files changed, 1 insertions, 3 deletions
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