fix: Remove redundant code (#37001)

fix: Remove redundant code
This commit is contained in:
ViralKansodiya 2023-09-13 20:34:20 +05:30 committed by GitHub
parent 7711744020
commit 96363dbb07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -631,7 +631,6 @@ def get_applicable_shipping_rules(party=None, quotation=None):
shipping_rules = get_shipping_rules(quotation)
if shipping_rules:
rule_label_map = frappe.db.get_values("Shipping Rule", shipping_rules, "label")
# we need this in sorted order as per the position of the rule in the settings page
return [[rule, rule] for rule in shipping_rules]