[Minor] Variable assignment before reference

Variable = 'inspection_required_fieldname'
diff --git a/erpnext/controllers/stock_controller.py b/erpnext/controllers/stock_controller.py
index 631685e..0c85aa1 100644
--- a/erpnext/controllers/stock_controller.py
+++ b/erpnext/controllers/stock_controller.py
@@ -262,6 +262,7 @@
 		'''Checks if quality inspection is set for Items that require inspection.
 		On submit, throw an exception'''
 		
+		inspection_required_fieldname = None
 		if self.doctype in ["Purchase Receipt", "Purchase Invoice"]:
 			inspection_required_fieldname = "inspection_required_before_purchase"
 		elif self.doctype in ["Delivery Note", "Sales Invoice"]: