Skip to main content

And now remove the uncovered code

ID
d01765e
date
2021-10-25 07:10:28+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
4474500
message
And now remove the uncovered code
changed files
1 file, 4 deletions

Changed files

concurrently.py (1195) → concurrently.py (1161)

diff --git a/concurrently.py b/concurrently.py
index ba0dc73..dea62fb 100644
--- a/concurrently.py
+++ b/concurrently.py
@@ -34,7 +34,3 @@ def concurrently(fn, fn_inputs, *, max_concurrency=5):
             for input in itertools.islice(fn_inputs, len(done)):
                 fut = executor.submit(fn, input)
                 futures[fut] = input
-
-
-def triple(x):
-    return x * 3