blob: 4223f000a6b626498f49da82a77f8303a9dd644a [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
Rushabh Mehta919a74a2017-06-22 16:37:04 +053012 setup_complete(data)