fix: tabspacing
diff --git a/erpnext/patches/v14_0/discount_accounting_separation.py b/erpnext/patches/v14_0/discount_accounting_separation.py
index a814522..fd49805 100644
--- a/erpnext/patches/v14_0/discount_accounting_separation.py
+++ b/erpnext/patches/v14_0/discount_accounting_separation.py
@@ -1,8 +1,9 @@
import frappe
+
def execute():
- doc = frappe.get_doc("Accounts Settings")
- discount_account = doc.enable_discount_accounting
- if discount_account:
- for doctype in ["Buying Settings", "Selling Settings"]:
- frappe.db.set_value(doctype, doctype, 'enable_discount_accounting', 1, update_modified=False)
\ No newline at end of file
+ doc = frappe.get_doc("Accounts Settings")
+ discount_account = doc.enable_discount_accounting
+ if discount_account:
+ for doctype in ["Buying Settings", "Selling Settings"]:
+ frappe.db.set_value(doctype, doctype, "enable_discount_accounting", 1, update_modified=False)