Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim committed Nov 17, 2023
1 parent b893041 commit 0867b22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/tests/community/test_leiden.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def test_leiden_golden_results(input_and_expected_output):
expected_to_result_map = {}
for e, r in zip(expected_partition, list(result_partition.to_pandas())):
if e in expected_to_result_map.keys():
assert(r == expected_to_result_map[e])
assert r == expected_to_result_map[e]

else:
expected_to_result_map[e] = r

0 comments on commit 0867b22

Please sign in to comment.