mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
13 lines
303 B
Python
13 lines
303 B
Python
import asyncio
|
|
|
|
class AsyncIterator:
|
|
def __init__(self, data):
|
|
pass
|
|
|
|
def __aiter__(self):
|
|
<error descr="'await' outside async function">await</error> asyncio.sleep(1)
|
|
|
|
def __anext__(self):
|
|
<error descr="'await' outside async function">await</error> asyncio.sleep(1)
|
|
|