Skip to content

Commit

Permalink
feat: install isort to pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbowen committed Oct 26, 2023
1 parent cdac720 commit b80b9ec
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions app/main/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
from app.main import bp
from app.main.forms import CookiesForm

# from app.data.data import consignment_response, consignment_files_response

from keycloak import KeycloakOpenID
from .forms import SearchForm

KEYCLOAK_BASE_URI = os.getenv("KEYCLOAK_BASE_URI")
KEYCLOAK_CLIENT_ID = os.getenv("KEYCLOAK_CLIENT_ID")
Expand Down Expand Up @@ -150,13 +148,9 @@ def quick_access():
return render_template("quick-access.html")


# @bp.route("/record", methods=["GET"])
# def record():
# return render_template(
# "record.html",
# consignment=consignment_response,
# consignment_files=consignment_files_response,
# )
@bp.route("/record", methods=["GET"])
def record():
return render_template("record.html")


@bp.route("/all-departments", methods=["GET"])
Expand Down

0 comments on commit b80b9ec

Please sign in to comment.