mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-28 12:55:05 +00:00
14 lines
162 B
Python
14 lines
162 B
Python
import time
|
|
import asyncio
|
|
|
|
|
|
async def func():
|
|
time.sleep(1) # ASYNC251
|
|
|
|
|
|
def func():
|
|
time.sleep(1) # OK
|
|
|
|
|
|
async def func():
|
|
asyncio.sleep(1) # OK
|