Skip to content

Deprecation

deprecation_warn(message, stacklevel=2)

Source code in griptape/utils/deprecation.py
4
5
6
7
def deprecation_warn(message: str, stacklevel: int = 2):
    warnings.simplefilter("always", DeprecationWarning)
    warnings.warn(message, category=DeprecationWarning, stacklevel=stacklevel)
    warnings.simplefilter("default", DeprecationWarning)