Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
pabera committed Nov 9, 2024
1 parent 42083d4 commit ef887f2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/jukebox/jukebox/multitimer.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,7 @@ def get_state(self) -> Dict[str, Any]:
0,
self.get_timeout() - (int(time()) - self._start_time)
)
remaining_seconds = (self.get_timeout() * self._iterations +
remaining_seconds_current_iteration)
remaining_seconds = (self.get_timeout() * self._iterations + remaining_seconds_current_iteration)

return {
'enabled': self.is_alive(),
Expand Down

0 comments on commit ef887f2

Please sign in to comment.