Skip to content

Commit

Permalink
chore: linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
deepeshgarg007 authored Nov 19, 2023
1 parent 2b94489 commit c29bc8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/selling/doctype/customer/customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ def make_contact(args, is_primary_contact=1):
party_type = args.customer_type if args.doctype == "Customer" else args.supplier_type
party_name_key = "customer_name" if args.doctype == "Customer" else "supplier_name"

if party_type == "Individual":
if party_type == "Individual":
first, middle, last = parse_full_name(args.get(party_name_key))
values.update(
{
Expand Down

0 comments on commit c29bc8c

Please sign in to comment.