Skip to content

Commit

Permalink
fix: add missing positional arguments (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alchez authored Feb 21, 2024
1 parent f9b7660 commit aa9f6c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shipstation_integration/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def setup_shipstation():
setup_custom_fields()


def create_customer_group():
def create_customer_group(args):
if frappe.db.get_value("Customer Group", {"customer_group_name": "ShipStation"}):
return

Expand All @@ -51,7 +51,7 @@ def create_customer_group():
customer_group.save()


def create_price_list():
def create_price_list(args):
if frappe.db.get_value("Price List", {"price_list_name": "ShipStation"}):
return

Expand All @@ -61,7 +61,7 @@ def create_price_list():
price_list.save()


def setup_custom_fields():
def setup_custom_fields(args):
item_fields = [
# Integration section
dict(
Expand Down

0 comments on commit aa9f6c6

Please sign in to comment.