Add minimum time for interrupted to be recorded & document our constants
This commit is contained in:
parent
33390b74b7
commit
e7ff2c7642
1 changed files with 4 additions and 3 deletions
|
@ -6,9 +6,10 @@ from pathlib import Path
|
|||
import pytz
|
||||
import zenipy
|
||||
|
||||
WORK_MIN = 1
|
||||
SHORT_MIN = 1
|
||||
LONG_MIN = 15
|
||||
WORK_MIN = 1 # Minutes for a work session
|
||||
SHORT_MIN = 1 # Minutes for a short break
|
||||
LONG_MIN = 15 # Minutes for a long break (NOT YET IMPLEMENTED)
|
||||
INTERRUPTED_MIN = 1 # Minimum minutes to ask to record an interrupted Pomodoro
|
||||
|
||||
|
||||
def pomodoro_prompt_plan(whatdid = ''):
|
||||
|
|
Loading…
Reference in a new issue