ray/rllib/env/remote_vector_env.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

10 lines
300 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