diff --git a/showtimes.py b/showtimes.py index 8e90758d0dad649f5a4d57d7fb3212928e5f25bd..f383502876706ea2eae88b0172e0221825b91964 100644 --- a/showtimes.py +++ b/showtimes.py @@ -24,7 +24,7 @@ def hello(): @app.route("/showtimes", methods=['GET']) def showtimes_list(): - json.dumps(showtimes) + return json.dumps(showtimes) @app.route("/showtimes/<date>", methods=['GET'])