summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2022-03-05 15:47:00 (GMT)
committerGitHub <noreply@github.com>2022-03-05 15:47:00 (GMT)
commit6927632492cbad86a250aa006c1847e03b03e70b (patch)
treee78631ceabf92fb41ab1deb78a024d2704a3eddb /Lib/concurrent
parentab9301a28fa431d7a32163126fc96de3b2ce6107 (diff)
downloadcpython-6927632492cbad86a250aa006c1847e03b03e70b.zip
cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.gz
cpython-6927632492cbad86a250aa006c1847e03b03e70b.tar.bz2
Remove trailing spaces (GH-31695)
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py
index c5912c2..706a4f2 100644
--- a/Lib/concurrent/futures/_base.py
+++ b/Lib/concurrent/futures/_base.py
@@ -282,7 +282,7 @@ def wait(fs, timeout=None, return_when=ALL_COMPLETED):
A named 2-tuple of sets. The first set, named 'done', contains the
futures that completed (is finished or cancelled) before the wait
completed. The second set, named 'not_done', contains uncompleted
- futures. Duplicate futures given to *fs* are removed and will be
+ futures. Duplicate futures given to *fs* are removed and will be
returned only once.
"""
fs = set(fs)