Explorar o código

finally sorted

Jason %!s(int64=2) %!d(string=hai) anos
pai
achega
946fda8038
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      models/contents/routes.py

+ 2 - 1
models/contents/routes.py

@@ -154,8 +154,9 @@ class Content(Resource):
             results = self._get_contents()
         
         x = list(results)
+        print(type(x), type(results))
+        x.sort(key = lambda k: k["date"], reverse=True)
         
-        #sortedData = sorted(list(results()), key=lambda x:x['date'], reverse=True)
         return x
 
     def post(self):