fix: Remove print statement

This commit is contained in:
Faris Ansari 2019-05-28 18:27:22 +05:30 committed by GitHub
parent 5afe9f2200
commit dd016479af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -345,7 +345,7 @@ def get_item_from_material_requests_based_on_supplier(source_name, target_doc =
@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(","))