Skip to content

Commit

Permalink
Revert linting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-p-smith committed May 16, 2024
1 parent b8e34aa commit 3e117c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/create_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ def create_app():

@app.route("/", defaults={"path": "index.html"})
@app.route("/<path:path>")
def static_file(file_path):
return app.send_static_file(file_path)
def static_file(path):
return app.send_static_file(path)

@app.route("/api/health", methods=["GET"])
def health():
Expand Down

0 comments on commit 3e117c1

Please sign in to comment.