From ed4c6278b0d67ac572a537e6d5cd83751894fdc2 Mon Sep 17 00:00:00 2001 From: Andrew Cohen Date: Mon, 22 Feb 2021 13:58:01 -0500 Subject: [PATCH] remove spec property in gym wrapper --- gym-unity/gym_unity/envs/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gym-unity/gym_unity/envs/__init__.py b/gym-unity/gym_unity/envs/__init__.py index 3cb2210e0b..58a7f73f07 100644 --- a/gym-unity/gym_unity/envs/__init__.py +++ b/gym-unity/gym_unity/envs/__init__.py @@ -298,10 +298,6 @@ def metadata(self): def reward_range(self) -> Tuple[float, float]: return -float("inf"), float("inf") - @property - def spec(self): - return None - @property def action_space(self): return self._action_space