mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: d8581d8f40a3b6e5d5865660aa9b7e39e3ac3fe5
8 lines
241 B
Python
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")
|