Reports coroutines that were called without using the await syntax.
await
Example:
async def bar(): pass async def foo(): bar()
After the quick-fix is applied, the code changes to:
async def bar(): pass async def foo(): await bar()