Skip to main content

remove a line that’s just whitespace

ID
c3d46bf
date
2022-01-04 08:13:59+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
a46fa6f
message
remove a line that's just whitespace
changed files
1 file, 1 addition, 1 deletion

Changed files

concurrently.py (1286) → concurrently.py (1282)

diff --git a/concurrently.py b/concurrently.py
index e1ecae6..39ea4f2 100644
--- a/concurrently.py
+++ b/concurrently.py
@@ -10,7 +10,7 @@ def concurrently(fn, inputs, *, max_concurrency=5):
     individual values in the iterable ``inputs``.
 
     Generates (input, output) tuples as the calls to ``fn`` complete.
-    
+
     See https://alexwlchan.net/2019/10/adventures-with-concurrent-futures/ for an explanation
     of how this function works.