removed old variable

This commit is contained in:
2024-01-28 20:47:45 -05:00
parent 1201c31a6e
commit abade9018f

View File

@@ -38,7 +38,6 @@ def timer(duration, interval, statements):
start_time = time.time()
next_statement_time = start_time + interval
statement_index = 0
isRunning = True
while time.time() - start_time < duration:
if time.time() >= next_statement_time: