fix: linter issue

This commit is contained in:
Nabin Hait
2024-02-20 15:51:29 +05:30
parent 46cd929d00
commit ea1a0b3a28

View File

@@ -1,7 +1,11 @@
import frappe
def execute():
frappe.db.sql("""
DELETE FROM `tabAsset Movement Item`
WHERE parent NOT IN (SELECT name FROM `tabAsset Movement`)
""")
# nosemgrep
frappe.db.sql(
"""
DELETE FROM `tabAsset Movement Item`
WHERE parent NOT IN (SELECT name FROM `tabAsset Movement`)
"""
)