mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
338 B
Python
12 lines
338 B
Python
class A:
|
|
<error descr="function \"__init__\" cannot be async">async</error> def __init__(self):
|
|
pass
|
|
|
|
<error descr="function \"__contains__\" cannot be async">async</error> def __contains__(self, value):
|
|
pass
|
|
|
|
async def __aiter__(self):
|
|
pass
|
|
|
|
async def __call__(self, *args, **kwargs):
|
|
pass |