Remove unneeded default value
This commit is contained in:
parent
e7ff2c7642
commit
fd9128bd5e
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ def main():
|
||||||
whatnext = pomodoro_prompt_plan(whatdid)
|
whatnext = pomodoro_prompt_plan(whatdid)
|
||||||
|
|
||||||
start = datetime.now(pytz.utc)
|
start = datetime.now(pytz.utc)
|
||||||
end = start + timedelta(minutes=WORK_MIN, seconds=0)
|
end = start + timedelta(minutes=WORK_MIN)
|
||||||
log_step('Start with plan: ' + whatnext, start)
|
log_step('Start with plan: ' + whatnext, start)
|
||||||
try:
|
try:
|
||||||
print('Task -', whatnext)
|
print('Task -', whatnext)
|
||||||
|
|
Loading…
Reference in a new issue