diff --git a/code/create_app.py b/code/create_app.py index 26fe70ee3..c5811cfd3 100644 --- a/code/create_app.py +++ b/code/create_app.py @@ -326,8 +326,8 @@ def create_app(): @app.route("/", defaults={"path": "index.html"}) @app.route("/") - 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():