Skip to content

Commit

Permalink
chore: default None types
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 27, 2023
1 parent 951b61c commit af4bc52
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/budy/models/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -1433,17 +1433,17 @@ def merger(first, second, separator = " | "):
@appier.operation(
name = "Import Seeplus",
parameters = (
("Fulfilment", "fulfilment", str, "HQ"),
("Delivery", "delivery", str, "HQ"),
("Origin", "origin", str),
("Fulfilment", "fulfilment", str, None),
("Delivery", "delivery", str, None),
("Origin", "origin", str, None),
("Strict", "strict", bool, True)
),
level = 2
)
def import_seeplus_s(
self,
fulfilment = "HQ",
delivery = "HQ",
fulfilment = None,
delivery = None,
origin = None,
strict = True
):
Expand Down

0 comments on commit af4bc52

Please sign in to comment.