fix: add compatibility shim for old frappe.pulse.utils imports

This commit is contained in:
Saqib Ansari 2026-01-05 13:23:35 +05:30
parent efc236ef37
commit a9fef72d4e
2 changed files with 5 additions and 0 deletions

0
frappe/pulse/__init__.py Normal file
View file

5
frappe/pulse/utils.py Normal file
View file

@ -0,0 +1,5 @@
"""Compatibility shim: keep old `frappe.pulse.utils` imports working."""
from frappe.utils import get_app_version, get_frappe_version
__all__ = ["get_app_version", "get_frappe_version"]