ray/rllib/env/remote_vector_env.py

10 lines
296 B
Python
Raw Normal View History

from ray.rllib.env.remote_base_env import RemoteBaseEnv
from ray.rllib.utils.deprecation import deprecation_warning
deprecation_warning(
old="rllib.env.remote_base_env.RemoteVectorEnv",
new="ray.rllib.env.remote_base_env.RemoteBaseEnv",
error=False)
RemoteVectorEnv = RemoteBaseEnv