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