Skip to content

Commit

Permalink
lint(viz): rm unused args from server code endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jun 13, 2024
1 parent 5832bce commit f5afb0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions strkit/viz/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ def get_call_data(i: int):


@app.route("/align_file")
def get_align_file(i: int):
def get_align_file():
return send_file(app.config["PARAMS"]["align_file"], conditional=True)


@app.route("/align_index")
def get_align_index_file(i: int):
def get_align_index_file():
return send_file(app.config["PARAMS"]["align_index"], conditional=True)


Expand Down

0 comments on commit f5afb0f

Please sign in to comment.