Skip to content

Commit a2167dd

Browse files
committed
Remove useless timestamp from DataObject constructor.
1 parent 05ff751 commit a2167dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/data/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def __new__(meta,name,bases,dct):
152152
#All data is either an object or an ability
153153
class DataObject(object):
154154
__metaclass__ = MetaObject
155-
def __init__(self, id, timestamp):
155+
def __init__(self, id):
156156
self.id = id
157157

158158
def visit(self,frame,player,object_type=None):

0 commit comments

Comments
 (0)