From 7031d189586e9eb79c4c9756da85008d5cbcf36b Mon Sep 17 00:00:00 2001 From: "seer-by-sentry[bot]" <157164994+seer-by-sentry[bot]@users.noreply.github.com> Date: Fri, 11 Jul 2025 14:06:48 +0000 Subject: [PATCH] Pass cart items to process_order --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 75b5cd2..8184ab9 100644 --- a/app.py +++ b/app.py @@ -70,6 +70,6 @@ def checkout(): print "Processing order for: " + order["email"] cart = order["cart"] - process_order(cart) + process_order(cart["items"]) return 'Success'