Skip to content

Commit

Permalink
remove unnecessary parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbybp committed Nov 19, 2023
1 parent a166021 commit adca9cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_recover_matching(self):
self.assertEqual(len(set(rmatch)), len(rmatch))
self.assertEqual(len(set(cmatch)), len(cmatch))
entry_set = set(zip(imat.row, imat.col))
for (i, j) in matching:
for i, j in matching:
# Assert that each pair in the matching is a valid entry
# in the matrix
self.assertIn((i, j), entry_set)
Expand Down

0 comments on commit adca9cf

Please sign in to comment.