Skip to content

Commit

Permalink
Fixes formatting for retder template function.
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTorgerson committed Oct 16, 2024
1 parent 4cea981 commit 404df1d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion routes/alfresco.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,12 @@ def run_fetch_alf_local_data(var_ep, lat, lon):
if validation == 400:
return render_template("400/bad_request.html"), 400
if validation == 422:
return render_template("422/invalid_latlon.html", west_bbox=WEST_BBOX, east_bbox=EAST_BBOX), 422
return (
render_template(
"422/invalid_latlon.html", west_bbox=WEST_BBOX, east_bbox=EAST_BBOX
),
422,
)

# Requests for HUC12s that intersect
huc12_features = asyncio.run(
Expand Down

0 comments on commit 404df1d

Please sign in to comment.