Files
Tatiana Berandintellij-monorepo-bot 02d31c7839 PY-82724 UI Texts: Fix typos and grammar mistakes (July)
GitOrigin-RevId: a780e01cddf73756d75f5ad78e8b47fd588c3a5a
2025-07-18 14:26:02 +00:00

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