mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
9 lines
298 B
Python
9 lines
298 B
Python
from ray.rllib.env.remote_base_env import RemoteBaseEnv
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="rllib.env.remote_vector_env.RemoteVectorEnv",
|
|
new="ray.rllib.env.remote_base_env.RemoteBaseEnv",
|
|
error=False)
|
|
|
|
RemoteVectorEnv = RemoteBaseEnv
|