Update supplier_quotation.py
diff --git a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py
index 3a07c24..30899c8 100644
--- a/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py
+++ b/erpnext/buying/doctype/supplier_quotation/supplier_quotation.py
@@ -104,9 +104,6 @@
 
 @frappe.whitelist()
 def make_quotation(source_name, target_doc=None):
-	def set_missing_values(source, target):
-		quotation = frappe.get_doc(target)
-
 	doclist = get_mapped_doc("Supplier Quotation", source_name, {
 		"Supplier Quotation": {
 			"doctype": "Quotation",
@@ -119,7 +116,7 @@
 			"condition": lambda doc: frappe.db.get_value("Item", doc.item_code, "is_sales_item")==1,
 			"add_if_empty": True
 		}
-	}, target_doc, set_missing_values)
+	}, target_doc)
 
 	return doclist