Files
openide/python/testData/inspections/PyAsyncCallInspection/asyncFromAsyncCall.py
2018-06-07 20:17:02 +03:00

10 lines
139 B
Python

async def bar():
return "hey"
async def foo():
<warning descr="Coroutine 'bar' is not awaited">bar()</warning>
return True