From f97d48aaedf9822dc2c37753334bd232d59d916f Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 30 Jan 2026 16:31:18 -0500 Subject: [PATCH] Tweaks for uninstalling. --- custom_ui/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_ui/install.py b/custom_ui/install.py index f1b8249..465559a 100644 --- a/custom_ui/install.py +++ b/custom_ui/install.py @@ -6,7 +6,7 @@ import frappe from .utils import create_module import holidays from datetime import date, timedelta -import custom_fields +from . import custom_fields def after_install(): create_module() @@ -94,7 +94,7 @@ def remove_custom_fields(custom_fields): if frappe.db.exists("Custom Field", name): frappe.delete_doc("Custom Field", name) frappe.db.commit() - print("Deleted {name}") + print(f"Deleted {name}") print("Deleted custom fields from database")