Skip to content

Commit

Permalink
describe argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate-Wessel committed Dec 3, 2024
1 parent 7026fa8 commit cc6510b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/app/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,12 @@ def closest_node(meters, longitude, latitude):
@app.route('/node/<node_id>', methods=['GET'])
def node(node_id):
"""Returns information about a given node in the Here street network.
This uses the latest map version and may not recognize an older node_id."""
This uses the latest map version and may not recognize an older node_id.
arguments:
node_id (int): identifier of the node in the latest Here map version
"""
try:
node_id = int(node_id)
except:
Expand Down

0 comments on commit cc6510b

Please sign in to comment.