Update bom.py

removed the attrgetter
diff --git a/erpnext/manufacturing/doctype/bom/bom.py b/erpnext/manufacturing/doctype/bom/bom.py
index c02576f..8a19f41 100644
--- a/erpnext/manufacturing/doctype/bom/bom.py
+++ b/erpnext/manufacturing/doctype/bom/bom.py
@@ -8,7 +8,7 @@
 from frappe import _
 from frappe.model.document import Document
 
-from operator import itemgetter, attrgetter
+from operator import itemgetter
 
 class BOM(Document):