Skip to main content

fix the formatting

ID
c4b9408
date
2021-10-25 07:07:27+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
b2258c2
message
fix the formatting
changed files
1 file, 1 addition, 10 deletions

Changed files

test_concurrently.py (673) → test_concurrently.py (610)

diff --git a/test_concurrently.py b/test_concurrently.py
index 8cf539a..e89ce83 100644
--- a/test_concurrently.py
+++ b/test_concurrently.py
@@ -29,13 +29,4 @@ def test_handles_iterator():
 def test_handles_list():
     result = set(concurrently(double, fn_inputs=[1, 3, 5, 7, 9, 11, 13]))
 
-    assert result == {
-        (1, 2),
-        (3, 6),
-        (5, 10),
-        (7, 14),
-        (9, 18),
-        (11, 22),
-        (13, 26)
-    }
-
+    assert result == {(1, 2), (3, 6), (5, 10), (7, 14), (9, 18), (11, 22), (13, 26)}