mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
GitOrigin-RevId: d8581d8f40a3b6e5d5865660aa9b7e39e3ac3fe5
8 lines
104 B
Python
8 lines
104 B
Python
async def f() -> bool:
|
|
return True
|
|
|
|
|
|
async def main():
|
|
if await f() or f():
|
|
print("hi")
|