Skip to content

Commit

Permalink
fix: flask server
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Nov 26, 2024
1 parent e13607c commit 26099bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/auth-react/flask-server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,8 @@ def check_role_api():

@app.route("/", defaults={"path": ""}) # type: ignore
@app.route("/<path:path>") # type: ignore
def index(_: str):
def index(path: str):
_ = path
return ""


Expand Down

0 comments on commit 26099bc

Please sign in to comment.