ruff/crates/ruff_linter/resources/test/fixtures/flake8_async/ASYNC251.py
Auguste Lalande 8cc96d7868 Re-code flake8-trio and flake8-async rules to match upstream (#10416)
Co-authored-by: Micha Reiser <micha@reiser.io>
2024-06-27 13:44:11 +02:00

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