From 5e205d5101e9b9e1121f42ac98fd771e14d1f88d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Vask=C3=B3?= <1771332+vlaci@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:20:39 +0200 Subject: [PATCH] chore(ruff): fix B033 Sets should not contain duplicate item --- tests/test_iter_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_iter_utils.py b/tests/test_iter_utils.py index bbae839311..a4edb5761a 100644 --- a/tests/test_iter_utils.py +++ b/tests/test_iter_utils.py @@ -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}), ], )