1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00
Files

10 lines
135 B
Python

#
#
#
from warnings import warn
def deprecated(message, stacklevel=2):
warn(message, DeprecationWarning, stacklevel=stacklevel)