remote_vector_env.py 298 B

123456789
  1. from ray.rllib.env.remote_base_env import RemoteBaseEnv
  2. from ray.rllib.utils.deprecation import deprecation_warning
  3. deprecation_warning(
  4. old="rllib.env.remote_vector_env.RemoteVectorEnv",
  5. new="ray.rllib.env.remote_base_env.RemoteBaseEnv",
  6. error=False)
  7. RemoteVectorEnv = RemoteBaseEnv