Skip to content
Snippets Groups Projects
Commit 9a25fec0 authored by Jan Müller's avatar Jan Müller
Browse files

Fix Storage Constructor

parent 9dd1dc5b
Branches
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ class Storage(object): ...@@ -18,7 +18,7 @@ class Storage(object):
def __init__(self): def __init__(self):
self.data = self.data.set_index("gid") self.data = self.data.set_index("gid")
self.data = self.data.drop(0, axis=0) self.data = self.data.drop(1, axis=0)
def UpdateSimulationtime(self): def UpdateSimulationtime(self):
if len(self.time_per_node) == len(self.nodes) and len(self.time_per_node) > 0: if len(self.time_per_node) == len(self.nodes) and len(self.time_per_node) > 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment