From 01d61dcc872678aa2c3dae26907adf4e6930a758 Mon Sep 17 00:00:00 2001 From: SP Mohanty <spmohanty91@gmail.com> Date: Tue, 30 Jul 2019 03:57:06 +0200 Subject: [PATCH] Fix small typo --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 2d5aa77..371c5b3 100644 --- a/run.py +++ b/run.py @@ -19,7 +19,7 @@ remote_client = FlatlandRemoteClient() ##################################################################### def my_controller(obs, number_of_agents): _action = {} - for _idx range(number_of_agents): + for _idx in range(number_of_agents): _action[_idx] = np.random.randint(0, 5) return _action -- GitLab