From fd9128bd5ea99163aaffd3c551eca617eccdfc97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Mon, 6 Jul 2020 09:27:00 -0400 Subject: [PATCH] Remove unneeded default value --- pomodoroprompt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index 67725b4..8f39f65 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -76,7 +76,7 @@ def main(): whatnext = pomodoro_prompt_plan(whatdid) 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) try: print('Task -', whatnext)