ray/rllib/env/wrappers/recsim_wrapper.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
437 B
Python
Raw Normal View History

# Deprecated module: Use ray.rllib.env.wrappers.recsim instead!
from ray.rllib.env.wrappers.recsim import ( # noqa: F401
make_recsim_env,
MultiDiscreteToDiscreteActionWrapper,
RecSimObservationSpaceWrapper,
RecSimResetWrapper,
)
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="ray.rllib.env.wrappers.recsim_wrapper",
new="ray.rllib.env.wrappers.recsim",
error=False,
)