Skip to content

Commit

Permalink
fix: Revert linting bug (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
ross-p-smith authored May 16, 2024
1 parent b8e34aa commit d4e417a
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 d4e417a

Please sign in to comment.