mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 22:53:20 +08:00
11 lines
276 B
Python
11 lines
276 B
Python
from ray.rllib.env.wrappers.dm_env_wrapper import DMEnv as DE
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.env.dm_env_wrapper.DMEnv",
|
|
new="ray.rllib.env.wrappers.dm_env_wrapper.DMEnv",
|
|
error=False,
|
|
)
|
|
|
|
DMEnv = DE
|