Skip to content
Snippets Groups Projects
Commit fd5e32b3 authored by Sastry, Nishanth Prof (Comp Sci & Elec Eng)'s avatar Sastry, Nishanth Prof (Comp Sci & Elec Eng)
Browse files

add missing return

parent a039609b
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ def hello(): ...@@ -24,7 +24,7 @@ def hello():
@app.route("/showtimes", methods=['GET']) @app.route("/showtimes", methods=['GET'])
def showtimes_list(): def showtimes_list():
nice_json(showtimes) return nice_json(showtimes)
@app.route("/showtimes/<date>", methods=['GET']) @app.route("/showtimes/<date>", methods=['GET'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment