We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab568f commit d0e5247Copy full SHA for d0e5247
examples/002-extra-field-to-column.py
@@ -35,5 +35,5 @@
35
proc_price_notax = extra_fields.get("Price", 0.00).get("value")
36
proc_price_tax = float(proc_price_notax) * 1.2
37
# no patch the item with these values
38
- print(f"INFO: Patching item wtih id {item.get('id')}")
+ print(f"INFO: Patching item with id {item.get('id')}")
39
items_client.patch_item(item.get('id'), body={"proc_pack_qty": proc_pack_qty, "proc_price_notax": proc_price_notax, "proc_price_tax": proc_price_tax, "proc_currency": CURRENCY_EUROS})
0 commit comments