Remove unused code and add types and a docstring.

This commit is contained in:
Edward Betts 2023-05-14 20:21:28 +00:00
parent 980737753f
commit 212a4f4ec3
1 changed files with 2 additions and 14 deletions

View File

@ -380,20 +380,8 @@ def search_map_page():
)
@app.route("/old_search")
def old_search_page():
q = flask.request.args.get("q")
if not q:
return flask.render_template("search.html", hits=None, bbox_list=None)
hits = nominatim.lookup(q)
for hit in hits:
if "geotext" in hit:
del hit["geotext"]
bbox = [hit["boundingbox"] for hit in hits]
return flask.render_template("search.html", hits=hits, bbox_list=bbox)
def read_bounds_param():
def read_bounds_param() -> list[float]:
"""Read bounds parameter."""
return [float(i) for i in flask.request.args["bounds"].split(",")]