Skip to content
Snippets Groups Projects
Verified Commit 9a8b7e66 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Improve code style

parent 7c9f5e88
No related branches found
No related tags found
No related merge requests found
......@@ -56,11 +56,11 @@ def byid(mid):
if mid not in movie_titles:
abort(404)
title, year = movie_titles[mid]
res_title, res_year = movie_titles[mid]
return {
"id": mid,
"title": title,
"year": year
"title": res_title,
"year": res_year
}
@app.route("/titles/healthz")
......
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