We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff39cf commit 14896a8Copy full SHA for 14896a8
52/lauramariel/pomodoro.py
@@ -9,9 +9,6 @@ def timer(timer_type):
9
endtime = datetime.now() + timedelta(minutes=5)
10
elif timer_type == "long_break":
11
endtime = datetime.now() + timedelta(minutes=10)
12
- else:
13
- endtime = ""
14
- print(f"Error")
15
16
while (datetime.now().replace(microsecond=0) != endtime.replace(microsecond=0)):
17
timeleft = endtime - datetime.now()
0 commit comments