ignore unused var

This commit is contained in:
senpai 2025-10-19 15:30:57 +02:00
parent 13023e1cd4
commit 1cc94b2248

View file

@ -28,7 +28,7 @@ line-length = 88
extend-select = ["I", "UP", "C"] # isort, pyupgrade, mccabe extend-select = ["I", "UP", "C"] # isort, pyupgrade, mccabe
# non rimuove import non usati # non rimuove import non usati
unfixable = ["F401"] unfixable = ["F401"]
ignore = ["F401"] ignore = ["F401", "F841"]
[tool.ruff.lint.mccabe] [tool.ruff.lint.mccabe]
max-complexity = 12 max-complexity = 12