mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-03 21:48:27 +00:00
8 lines
164 B
Python
8 lines
164 B
Python
"""
|
|
Reload Task Doctype of Project Module
|
|
"""
|
|
def execute():
|
|
from webnotes.modules.module_manager import reload_doc
|
|
reload_doc('Projects', 'DocType', 'Ticket')
|
|
|