mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: 9862d18848b3a826ba11e9c0e15e56a2c94bcc9e
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)
|
|
|