Skip to content

Commit

Permalink
remove trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed Nov 8, 2023
1 parent a404c89 commit 356369c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion todo.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def overflow(counter: int, minimum: int, maximum: int) -> int:
if counter >= maximum:
return minimum + (counter - maximum)
if counter < minimum:
return maximum - (minimum - counter)
return maximum - (minimum - counter)
return counter


Expand Down

0 comments on commit 356369c

Please sign in to comment.