mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
10 lines
308 B
Python
10 lines
308 B
Python
from ray.rllib.env.wrappers.pettingzoo_env import PettingZooEnv as PE
|
|
from ray.rllib.utils.deprecation import deprecation_warning
|
|
|
|
deprecation_warning(
|
|
old="ray.rllib.env.pettingzoo_env.PettingZooEnv",
|
|
new="ray.rllib.env.wrappers.pettingzoo_env.PettingZooEnv",
|
|
error=False,
|
|
)
|
|
|
|
PettingZooEnv = PE
|