mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
# Conflicts: # community/python/python-psi-impl/src/com/jetbrains/python/validation/PyAsyncAwaitAnnotator.java GitOrigin-RevId: 125a714f769ac93c8516250ae5b92afff14518f0
5 lines
164 B
Python
5 lines
164 B
Python
def example(y):
|
|
return [x for x in <error descr="'await' outside async function">await</error> y]
|
|
|
|
async def example_correct(y):
|
|
return [x for x in await y] |