Merge pull request #35610 from ruthra-kumar/fix_travis

chore: fix travis
This commit is contained in:
ruthra kumar 2023-06-08 15:53:50 +05:30 committed by GitHub
commit 9cd982aa54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,10 +158,7 @@ def get_customers_based_on_territory_or_customer_group(customer_collection, coll
return frappe.get_list(
"Customer",
fields=["name", "customer_name", "email_id"],
filters=[
["disabled", "=", 0],
[fields_dict[customer_collection], "IN", selected]
],
filters=[["disabled", "=", 0], [fields_dict[customer_collection], "IN", selected]],
)