在mongo中执行sort函数没有问题
```shell
db.auth_info.find().sort({"create_time": -1}).limit(1)
```
同样的语句,放到python中报标题的错误
归根到底还是因为二者的语法并未完全兼容一致。正确写法如下
```python
last_token_time = auth_col.find().sort([("create_time", -1)]).limit(1)
```
Pymongo: TypeError: if no direction is specified, key_or_list must be an instance of list 报错