Skip to content

Commit

Permalink
chore(ruff): fix B033 Sets should not contain duplicate item
Browse files Browse the repository at this point in the history
  • Loading branch information
vlaci committed Sep 20, 2023
1 parent 083c5d3 commit 5e205d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_iter_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
[
([], set()),
([0, 0], {0}),
([0, 0, 0], {0, 0}),
([1, 2, 3], {1, 1}),
([0, 0, 0], {0}),
([1, 2, 3], {1}),
([1, 5, 8, 8, 10, 15], {4, 3, 0, 2, 5}),
],
)
Expand Down

0 comments on commit 5e205d5

Please sign in to comment.