mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +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)
|
|
|