Skip to content

Commit

Permalink
Fixed small bug where section3/app.py didn't have a list where there …
Browse files Browse the repository at this point in the history
…should've been one.
  • Loading branch information
jslvtr committed Jan 21, 2017
1 parent b94f485 commit 58e9355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion section3/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

stores = [{
'name': 'My Store',
'items': {'name':'my item', 'price': 15.99 }
'items': [{'name':'my item', 'price': 15.99 }]
}]

@app.route('/')
Expand Down

0 comments on commit 58e9355

Please sign in to comment.