From 8c372faf50908d902b9e1b921ff9e43b63d9f9cf Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Fri, 6 Feb 2026 11:29:45 +0530 Subject: [PATCH] chore: fix linter issue Removed duplicate import of get_bom_items_as_dict from BOM module. --- erpnext/stock/doctype/stock_entry_type/stock_entry_type.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py index 040b98d84c7..4a768ee94fd 100644 --- a/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py +++ b/erpnext/stock/doctype/stock_entry_type/stock_entry_type.py @@ -9,11 +9,10 @@ from frappe import _ from frappe.model.document import Document from frappe.utils import cint, flt +from erpnext.manufacturing.doctype.bom.bom import get_bom_items_as_dict from erpnext.stock.serial_batch_bundle import SerialBatchCreation from erpnext.stock.utils import get_combine_datetime -from erpnext.manufacturing.doctype.bom.bom import get_bom_items_as_dict - class StockEntryType(Document): # begin: auto-generated types