Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsproul committed Jan 25, 2024
1 parent 2931518 commit 8f20b08
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_explode_gaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 8f20b08

Please sign in to comment.