summaryrefslogtreecommitdiff
path: root/model.py
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-17 00:01:05 +0200
committerKaran Jayachandra <karan.jayachandra@nxp.com>2024-10-17 00:01:05 +0200
commitfb6b013b821e2011a04d6ba85813a6a947c14239 (patch)
treea8079ca06cb33fc71bb8dc690ac80d458a756571 /model.py
parenta355423ff7566ff1d38bfa1627ec5b7ffa4b6bdc (diff)
Removed debug statements and old template
Diffstat (limited to 'model.py')
-rw-r--r--model.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/model.py b/model.py
index c69ba48..904265f 100644
--- a/model.py
+++ b/model.py
@@ -131,6 +131,4 @@ class Timer:
return self.default
mins = f"{int(total_seconds // 60):02d}"
secs = f"{int(total_seconds % 60):02d}"
- print(mins)
- print(secs)
return mins, secs