From 58e93559f2f25ee48367e9d06a0e8e30fba0b317 Mon Sep 17 00:00:00 2001 From: Jose Salvatierra Date: Sat, 21 Jan 2017 22:28:53 +0000 Subject: [PATCH] Fixed small bug where section3/app.py didn't have a list where there should've been one. --- section3/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section3/app.py b/section3/app.py index 24c75d45..d16b3a8c 100644 --- a/section3/app.py +++ b/section3/app.py @@ -4,7 +4,7 @@ stores = [{ 'name': 'My Store', - 'items': {'name':'my item', 'price': 15.99 } + 'items': [{'name':'my item', 'price': 15.99 }] }] @app.route('/')