mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-18 09:05:00 +00:00
8 lines
216 B
Python
8 lines
216 B
Python
def execute():
|
|
from webnotes.utils import get_base_path
|
|
import shutil
|
|
import os
|
|
|
|
utils_path = os.path.join(get_base_path(), "app", "accounts", "utils")
|
|
if os.path.exists(utils_path):
|
|
shutil.rmtree(utils_path) |