Fixed all ruff issues

This commit is contained in:
2025-12-07 05:59:53 +01:00
parent a21121d025
commit 0c48640412
13 changed files with 29 additions and 30 deletions

View File

@@ -100,7 +100,7 @@ exclude = [
".qodo",
".vscode",
]
select = [
lint.select = [
"E", "W",
"F",
"I",
@@ -110,8 +110,8 @@ select = [
"PL",
"UP",
]
ignore = ["PLR0913", "PLR2004", "TID252", "E501"]
lint.ignore = ["PLR0913", "PLR2004", "TID252", "E501"]
[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["PLC0415"]
"conftest.py" = ["PLC0415"]