fix: Remove print statement
diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
index fc7dd72..a10ce46 100644
--- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
+++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
@@ -345,7 +345,7 @@
 @frappe.whitelist()
 def get_supplier_tag():
 	data = frappe.db.sql("select _user_tags from `tabSupplier`")
-	print("data:", data)
+
 	tags = []
 	for tag in data:
 		tags += filter(bool, tag[0].split(","))