mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-21 14:09:19 +00:00
8 lines
173 B
Python
8 lines
173 B
Python
import frappe
|
|
|
|
|
|
def execute():
|
|
for ws in ["Receivables", "Payables"]:
|
|
frappe.delete_doc_if_exists("Workspace Sidebar", ws)
|
|
frappe.delete_doc_if_exists("Workspace", ws)
|