stable-baselines3/stable_baselines3/common/cmd_util.py
Anssi 19c1a89a3a
Rename cmd_util to env_util (#197)
* Rename cmd_util to env_util

* Fix docs and add missing newline

* Address comments
2020-10-22 11:05:52 +02:00

7 lines
227 B
Python

import warnings
from stable_baselines3.common.env_util import * # noqa: F403
warnings.warn(
"Module ``common.cmd_util`` has been renamed to ``common.env_util`` and will be removed in the future.", FutureWarning
)