6 lines
119 B
Python
6 lines
119 B
Python
from warnings import warn
|
|
|
|
|
|
def warn_deprecation(text: str):
|
|
warn(text, category=DeprecationWarning, stacklevel=2)
|