Control f chaneg of gym to gymnasium

This commit is contained in:
pseudo-rnd-thoughts
2022-09-08 10:58:14 +01:00
parent 2526810e85
commit 29b1316bc3
10 changed files with 22 additions and 22 deletions

View File

@@ -35,7 +35,7 @@ class Sequence(Space[Tuple]):
"""
assert isinstance(
space, gymnasium.Space
), f"Expects the feature space to be instance of a gym Space, actual type: {type(space)}"
), f"Expects the feature space to be instance of a gymnasium Space, actual type: {type(space)}"
self.feature_space = space
super().__init__(
None, None, seed # type: ignore