diff --git a/main/.buildinfo b/main/.buildinfo index 6328dc04d..927e72664 100644 --- a/main/.buildinfo +++ b/main/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: c8614aea3385efbeccff5374f83671e8 +config: 6e61249047292981a84104a53735e4b9 tags: d77d1c0d9ca2f4c8421862c7c5a0d620 diff --git a/main/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip b/main/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip index 3c06d4327..17807899e 100644 Binary files a/main/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip and b/main/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip differ diff --git a/main/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip b/main/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip index 88da75926..29c958fce 100644 Binary files a/main/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip and b/main/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip differ diff --git a/main/_modules/gymnasium/core/index.html b/main/_modules/gymnasium/core/index.html index 6a66342bb..3d86d2986 100644 --- a/main/_modules/gymnasium/core/index.html +++ b/main/_modules/gymnasium/core/index.html @@ -690,7 +690,9 @@
env: The environment to wrap
"""
self.env = env
- assert isinstance(env, Env)
+ assert isinstance(
+ env, Env
+ ), f"Expected env to be a `gymnasium.Env` but got {type(env)}"
self._action_space: spaces.Space[WrapperActType] | None = None
self._observation_space: spaces.Space[WrapperObsType] | None = None
diff --git a/main/_modules/gymnasium/vector/vector_env/index.html b/main/_modules/gymnasium/vector/vector_env/index.html
index 22bdb88a8..a1c02f8d1 100644
--- a/main/_modules/gymnasium/vector/vector_env/index.html
+++ b/main/_modules/gymnasium/vector/vector_env/index.html
@@ -738,7 +738,9 @@ Source code for gymnasium.vector.vector_env
env: The environment to wrap
"""
self.env = env
- assert isinstance(env, VectorEnv)
+ assert isinstance(
+ env, VectorEnv
+ ), f"Expected env to be a `gymnasium.vector.VectorEnv` but got {type(env)}"
self._observation_space: gym.Space | None = None
self._action_space: gym.Space | None = None