Skip to content

Commit 58e9355

Browse files
committed
Fixed small bug where section3/app.py didn't have a list where there should've been one.
1 parent b94f485 commit 58e9355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

section3/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
stores = [{
66
'name': 'My Store',
7-
'items': {'name':'my item', 'price': 15.99 }
7+
'items': [{'name':'my item', 'price': 15.99 }]
88
}]
99

1010
@app.route('/')

0 commit comments

Comments
 (0)