From 308a284fce6a16a83eed72f625e3bd2df9a181be Mon Sep 17 00:00:00 2001 From: mlncn Date: Sun, 2 May 2021 16:43:33 -0400 Subject: [PATCH] Remove another bit made unnecessary by our reset button --- pomodoroprompt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index fdebb7e..0178549 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -32,8 +32,6 @@ def pomodoro_prompt_report(whatnext): """ Ask what task was completed, showing the last task claimed to be being worked on """ text = "What'd you do?" - if whatnext: - text = "\n\n(What you said you'd do: " + whatnext + ')\n' whatdid = prompt_window.prompt(prompt=text, task=whatnext) # Pressing cancel returns None, but we want to just treat it as an empty string. if whatdid is None: