mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 02:04:23 +07:00
# Conflicts: # community/python/python-psi-impl/src/com/jetbrains/python/validation/PyAsyncAwaitAnnotator.java GitOrigin-RevId: 125a714f769ac93c8516250ae5b92afff14518f0
8 lines
121 B
Python
8 lines
121 B
Python
import asyncio
|
|
|
|
async def example():
|
|
await asyncio.sleep(1)
|
|
|
|
async def example_correct():
|
|
await asyncio.sleep(1)
|