diff --git a/gymnasium/core.py b/gymnasium/core.py index 51cbeaadf..d77046a6b 100644 --- a/gymnasium/core.py +++ b/gymnasium/core.py @@ -45,6 +45,9 @@ class Env(Generic[ObsType, ActType]): ``super().reset(seed=seed)`` and when assessing ``self.np_random``. .. seealso:: For modifying or extending environments use the :py:class:`gymnasium.Wrapper` class + + Note: + To get reproducible sampling of actions, a seed can be set with ``env.action_space.seed(123)``. """ # Set this in SOME subclasses