stanley-king 4 years ago
parent
commit
439ca40751
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plot/app.py

+ 1 - 1
plot/app.py

@@ -55,8 +55,8 @@ def index():
 @app.route('/plot/days')
 def days():
     dates = dataCenter.days()
-    dates = dates[0:30]
     dates.reverse()
+    dates = dates[0:30]
     return jsonify(dates)
 
 @app.route('/plot/paths')