8/9
This commit is contained in:
parent
4f70fda509
commit
72cdb844ff
1 changed files with 1 additions and 1 deletions
2
memos.py
2
memos.py
|
@ -100,7 +100,7 @@ class TimeGrammar(object):
|
||||||
class TimeTracker(list):
|
class TimeTracker(list):
|
||||||
def __init__(self, time=None):
|
def __init__(self, time=None):
|
||||||
self.timerecord = {"P": [], "F": []}
|
self.timerecord = {"P": [], "F": []}
|
||||||
self.open = {}
|
self.open = {"": ""}# Needs to be a dictionary :)
|
||||||
if time is not None:
|
if time is not None:
|
||||||
self.append(time)
|
self.append(time)
|
||||||
self.current=0
|
self.current=0
|
||||||
|
|
Loading…
Reference in a new issue