mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
8 lines
193 B
Python
8 lines
193 B
Python
import asyncio
|
|
|
|
a = <error descr="'await' outside async function">await</error> asyncio.sleep(1)
|
|
|
|
class C:
|
|
b = <error descr="'await' outside async function">await</error> asyncio.sleep(1)
|
|
|