Skip to content

Commit

Permalink
fix: remove some extra space to solve linter
Browse files Browse the repository at this point in the history
  • Loading branch information
viralkansodiya authored Nov 6, 2023
1 parent 41facbd commit b59663c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_party_addresses_and_contact(party_type, party, party_group, filters):
if not any([addresses, contacts]):
result = [party]
result.append(party_groups[party])
if filters.get("party_type") in ["Customer" , "Supplier"]:
if filters.get("party_type") in ["Customer", "Supplier"]:
result.append(party_name_map[party])

Check warning on line 103 in erpnext/selling/report/address_and_contacts/address_and_contacts.py

View check run for this annotation

Codecov / codecov/patch

erpnext/selling/report/address_and_contacts/address_and_contacts.py#L102-L103

Added lines #L102 - L103 were not covered by tests
result.extend(add_blank_columns_for("Contact"))
result.extend(add_blank_columns_for("Address"))
Expand Down

0 comments on commit b59663c

Please sign in to comment.