Update app.py

Signed-off-by: nyemade-uversky <55847877+nyemade-uversky@users.noreply.github.com>
This commit is contained in:
nyemade-uversky 2023-06-06 16:41:53 -06:00 committed by GitHub
parent c5688f4c78
commit 2234104626
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class WorkflowConsoleApp:
print("==========Begin the purchase of item:==========", flush=True)
item_name = default_item_name
order_quantity = 11
order_quantity = 10
total_cost = int(order_quantity) * baseInventory[item_name].per_item_cost
order = OrderPayload(item_name=item_name, quantity=int(order_quantity), total_cost=total_cost)
@ -112,4 +112,4 @@ class WorkflowConsoleApp:
if __name__ == '__main__':
app = WorkflowConsoleApp()
app.main()
app.main()