Skip to content
Snippets Groups Projects
Commit 01d61dcc authored by spmohanty's avatar spmohanty
Browse files

Fix small typo

parent 6390c67e
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ remote_client = FlatlandRemoteClient() ...@@ -19,7 +19,7 @@ remote_client = FlatlandRemoteClient()
##################################################################### #####################################################################
def my_controller(obs, number_of_agents): def my_controller(obs, number_of_agents):
_action = {} _action = {}
for _idx range(number_of_agents): for _idx in range(number_of_agents):
_action[_idx] = np.random.randint(0, 5) _action[_idx] = np.random.randint(0, 5)
return _action return _action
......
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