Fix decimal serial bug

This commit is contained in:
clerie 2020-04-07 15:30:00 +02:00
parent afbcd40416
commit f7bd9f20c5
1 changed files with 4 additions and 4 deletions

View File

@ -82,10 +82,10 @@ def api_station():
out = []
for s in stations:
out.append({
"name": s.name,
"lat": s.lat,
"lon": s.lon,
"dwd_id": s.dwd_id,
"name": str(s.name),
"lat": float(s.lat),
"lon": float(s.lon),
"dwd_id": str(s.dwd_id),
})
return jsonify(out)