feat: adding ruff linting support

This commit is contained in:
lucas.oskorep
2023-07-09 14:21:29 -04:00
parent 367e646be2
commit 914a698475
6 changed files with 19 additions and 21 deletions

View File

@@ -73,7 +73,7 @@ def get_routes():
@app.route("/get_stop_id", methods=["POST"])
def get_stop_id():
stop_name = request.json["stop_name"]
rows = stops.loc[stops["stop_name"] == stop_name]
stops.loc[stops["stop_name"] == stop_name]
return jsonify({"station_changed": True})