mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-19 06:45:11 +00:00
11 lines
277 B
Python
11 lines
277 B
Python
from __future__ import unicode_literals
|
|
def execute():
|
|
"""
|
|
deprecate:
|
|
* doctype - import data control
|
|
* page - import data (old)
|
|
"""
|
|
import webnotes
|
|
from webnotes.model import delete_doc
|
|
delete_doc('DocType', 'Import Data Control')
|
|
delete_doc('Page', 'Import Data') |