seitime-frappe/frappe/utils/deprecations.py
David Arnold 8cfeb156df
devx: add deprecation dumpster (#27887)
* feat: Add deprecation_dumpster.py file

* docs: add jovial and jocose docstring for frappe/deprecation_dumpster.py

* refactor: fill the dumpster with its own kind

* refactor: move to the deprecation dumpster

* chore: color coding class

* fix: only check import error when import errors
2024-10-08 18:56:10 +02:00

12 lines
331 B
Python

"""Utils for deprecating functionality in Framework.
WARNING: This file is internal, instead of depending just copy the code or use deprecation
libraries.
"""
from frappe.deprecation_dumpster import (
_old_deprecated as deprecated,
)
from frappe.deprecation_dumpster import (
_old_deprecation_warning as deprecation_warning,
)