blob: e82bc96d93776e60f32afe0c8aa6a068530a8b53 [file] [log] [blame]
Aditya Hasef3c22f32019-01-22 18:22:20 +05301from __future__ import unicode_literals
Rushabh Mehta919a74a2017-06-22 16:37:04 +05302import json, os
3
4from frappe.desk.page.setup_wizard.setup_wizard import setup_complete
5from erpnext.setup.setup_wizard import setup_wizard
6
7def complete():
8 with open(os.path.join(os.path.dirname(__file__),
9 'data', 'test_mfg.json'), 'r') as f:
10 data = json.loads(f.read())
11
12 #setup_wizard.create_sales_tax(data)
13 setup_complete(data)