Changeset 5741f6d in flowtimer
- Timestamp:
- 08/22/24 11:15:16 (11 months ago)
- Branches:
- guix
- Children:
- 36c9ef5
- Parents:
- 577c8c6
- Location:
- flowtimer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
flowtimer/Phase.py
r577c8c6 r5741f6d 50 50 str(self._ticks_left) + "\n" + str(self._state) + "\n") 51 51 52 def is_sequence(self): 53 return False 54 52 55 def abort(self): 53 56 self._state = "finished" -
flowtimer/RecurringPhaseSequence.py
r577c8c6 r5741f6d 46 46 def title(self): 47 47 return self.current_phase.title 48 49 def is_sequence(self): 50 return True 48 51 49 52 def current_phase_number(self):
Note:
See TracChangeset
for help on using the changeset viewer.