Tianshou/tianshou/utils/warning.py

9 lines
209 B
Python
Raw Normal View History

import warnings
warnings.simplefilter("once", DeprecationWarning)
def deprecation(msg: str) -> None:
"""Deprecation warning wrapper."""
warnings.warn(msg, category=DeprecationWarning, stacklevel=2)