Skip to content
Snippets Groups Projects
Commit 0fddb4ed authored by Erik Nygren's avatar Erik Nygren
Browse files

removed debugging print

parent e62dc2e7
No related branches found
No related tags found
No related merge requests found
...@@ -229,7 +229,6 @@ def schedule_from_file(filename) -> ScheduleGenerator: ...@@ -229,7 +229,6 @@ def schedule_from_file(filename) -> ScheduleGenerator:
# agents are always reset as not moving # agents are always reset as not moving
if len(data['agents_static'][0]) > 5: if len(data['agents_static'][0]) > 5:
print(len(data['agents_static'][0]))
agents_static = [EnvAgentStatic(d[0], d[1], d[2], d[3], d[4], d[5]) for d in data["agents_static"]] agents_static = [EnvAgentStatic(d[0], d[1], d[2], d[3], d[4], d[5]) for d in data["agents_static"]]
else: else:
agents_static = [EnvAgentStatic(d[0], d[1], d[2], d[3]) for d in data["agents_static"]] agents_static = [EnvAgentStatic(d[0], d[1], d[2], d[3]) for d in data["agents_static"]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment