Files
2026-02-24 05:53:37 +00:00

8 lines
241 B
Python

async def f() -> bool:
return True
async def main():
if <warning descr="Coroutine not awaited in boolean context"><caret>f()</warning> or <warning descr="Coroutine not awaited in boolean context">f()</warning>:
print("hi")