Skip to content

Commit 5c3be70

Browse files
committed
fix: revert only functional change from last commit
1 parent e4b9d9c commit 5c3be70

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nx_parallel/tests/test_get_chunks.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ def iterator_func(G):
8484
H, process_func, iterator_func, get_chunks=random_chunking
8585
)
8686
if isinstance(c1, types.GeneratorType):
87-
c1, c2 = list(c1), list(
88-
c2
87+
c1, c2 = (
88+
list(c1),
89+
list(c2),
8990
) # Convert generators to lists for comparison
9091
if func in chk_dict_vals:
9192
for i in range(len(G.nodes)):

0 commit comments

Comments
 (0)