Summary
import anyio
async def test() -> None:
await anyio.sleep(0)
https://play.ruff.rs/86a8f945-5295-4092-ae43-81de88b90a63
ASYNC115 auto-fixes this to:
import anyio
async def test() -> None:
await anyio.lowlevel.checkpoint()
This doesn't type check because anyio.lowlevel isn't imported.
Version
No response
Summary
https://play.ruff.rs/86a8f945-5295-4092-ae43-81de88b90a63
ASYNC115 auto-fixes this to:
This doesn't type check because
anyio.lowlevelisn't imported.Version
No response