报告在未使用 await 语法的情况下调用的协同程序。
await
示例:
async def bar(): pass async def foo(): bar()
应用快速修复后,代码变为:
async def bar(): pass async def foo(): await bar()