File size: 209 Bytes
9b19c29
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import warnings

warnings.simplefilter("once", DeprecationWarning)


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