From 1cc94b2248bcef73da099162e3e93f1f0e6a089c Mon Sep 17 00:00:00 2001 From: senpai Date: Sun, 19 Oct 2025 15:30:57 +0200 Subject: [PATCH] ignore unused var --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 71df3ba..562293e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ line-length = 88 extend-select = ["I", "UP", "C"] # isort, pyupgrade, mccabe # non rimuove import non usati unfixable = ["F401"] -ignore = ["F401"] +ignore = ["F401", "F841"] [tool.ruff.lint.mccabe] max-complexity = 12