From 8329b760082e07364a6f6c3e8e0b240802838316 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 2 Dec 2025 14:55:10 -0500 Subject: Ignore PLC0415 in ruff (late imports for circular deps) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index aa09ac8..8cd59ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,7 @@ ignore = [ "ISC001", # implicit-string-concatenation, conflicts with ruff format "E501", # line-too-long "RUF100", # unused-noqa + "PLC0415", # import-outside-top-level, needed for circular dep avoidance in tests ] [tool.ruff.lint.isort] -- cgit v1.2.3