Files
schuetz3-erpnext/erpnext/setup/setup_wizard/utils.py
Ankush Menat c07713b860 style: bulk format code with black
v13 port because otherwise backports will result in conflicts always
2022-03-29 17:29:34 +05:30

12 lines
252 B
Python

import json
import os
from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
def complete():
with open(os.path.join(os.path.dirname(__file__), "data", "test_mfg.json"), "r") as f:
data = json.loads(f.read())
setup_complete(data)