import time
import asyncio
async def func():
time.sleep(1) # ASYNC251
def func():
time.sleep(1) # OK
asyncio.sleep(1) # OK