‘coroutine‘ object is not iterable
ValueError: [TypeError("'coroutine' object is not iterable"), TypeError('vars() argument must have __dict__ attribute')]在fastapi ,uvloop使用异步函数使用异步的时候 ‘coroutine’ object is not iterable错误原来发现,是同步函数中调用异步代码,请在外面函数中加上async ,await...