Remove another bit made unnecessary by our reset button

This commit is contained in:
mlncn 2021-05-02 16:43:33 -04:00
parent 270c999b83
commit 308a284fce

View file

@ -32,8 +32,6 @@ def pomodoro_prompt_report(whatnext):
""" Ask what task was completed, showing the last task claimed to be being worked on """ Ask what task was completed, showing the last task claimed to be being worked on
""" """
text = "What'd you do?" 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) whatdid = prompt_window.prompt(prompt=text, task=whatnext)
# Pressing cancel returns None, but we want to just treat it as an empty string. # Pressing cancel returns None, but we want to just treat it as an empty string.
if whatdid is None: if whatdid is None: