This commit is contained in:
Dpeta 2021-03-23 22:41:06 +01:00
parent 4f70fda509
commit 72cdb844ff

View file

@ -100,7 +100,7 @@ class TimeGrammar(object):
class TimeTracker(list):
def __init__(self, time=None):
self.timerecord = {"P": [], "F": []}
self.open = {}
self.open = {"": ""}# Needs to be a dictionary :)
if time is not None:
self.append(time)
self.current=0