ray/rllib/env/wrappers/recsim_wrapper.py
Balaji Veeramani 7f1bacc7dc
[CI] Format Python code with Black (#21975)
See #21316 and #21311 for the motivation behind these changes.
2022-01-29 18:41:57 -08:00

14 lines
437 B
Python

# 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,
)