()
| 145 | |
| 146 | |
| 147 | def resume_timer(): |
| 148 | global is_paused |
| 149 | if is_paused: |
| 150 | is_paused = False |
| 151 | count_down(remaining_time) |
| 152 | play_button.config(state=DISABLED) |
| 153 | pause_button.config(state=NORMAL) |
| 154 | |
| 155 | |
| 156 | def set_custom_durations(): |
nothing calls this directly
no test coverage detected