From 0152dd7682a583dd54e5c887c906f1e5d40a9bdf Mon Sep 17 00:00:00 2001 From: Giacomo Spigler <spiglerg@gmail.com> Date: Wed, 5 Jun 2019 22:19:00 +0200 Subject: [PATCH] fix? --- flatland/envs/agent_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flatland/envs/agent_utils.py b/flatland/envs/agent_utils.py index 09d796d4..2a1b7228 100644 --- a/flatland/envs/agent_utils.py +++ b/flatland/envs/agent_utils.py @@ -29,9 +29,9 @@ class EnvAgentStatic(object): position = attrib() direction = attrib() target = attrib() - moving = attrib() + moving = False - def __init__(self, position, direction, target, moving=False): + def __init__(self, position, direction, target): self.position = position self.direction = direction self.target = target -- GitLab