sort
should be a list of key-direction pairs, that is
db.test.find({"number": {"$gt": 1}}).sort([("number", 1), ("date", -1)])
The reason why this has to be a list is that the ordering of the arguments matters and dict
s are not ordered in Python < 3.6