Files
Gymnasium/gym/utils/__init__.py
pzhokhov d11196a896 remove reraise logic (#1342)
* remove reraise logic - replace with re-raising import errors in the only place it is used

* remove reraise

* remove reset call from MountainCar constructor

* further remove reraise

* remove reraise import in classic_control/rendering.py
2019-03-07 15:58:26 -08:00

10 lines
401 B
Python

"""A set of common utilities used within the environments. These are
not intended as API functions, and will not remain stable over time.
"""
# These submodules should not have any import-time dependencies.
# We want this since we use `utils` during our import-time sanity checks
# that verify that our dependencies are actually present.
from .colorize import colorize
from .ezpickle import EzPickle