From 8f20b08403e2e1d83395b854217267707592e798 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 25 Jan 2024 11:47:42 +1100 Subject: [PATCH] Fix lint --- tests/test_explode_gaps.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_explode_gaps.py b/tests/test_explode_gaps.py index 6519963..c908124 100644 --- a/tests/test_explode_gaps.py +++ b/tests/test_explode_gaps.py @@ -6,13 +6,11 @@ def check_gaps(start_slot, end_slot, sprp): assert len(result) > 0 - prev_start = None prev_end = None for start, end in result: assert start < end assert start == start_slot or (start == prev_end + 1 and start % sprp == 1) assert end == end_slot or (end < end_slot and end % sprp == 0) - prev_start = start prev_end = end