re-add 'U' ruff type category

This should have been not removed
This commit is contained in:
Jörg Thalheim 2023-12-06 17:10:15 +01:00
parent 2f56c73b47
commit 8ea149de07
2 changed files with 2 additions and 2 deletions

View File

@ -55,5 +55,5 @@ ignore_missing_imports = true
[tool.ruff]
target-version = "py311"
line-length = 88
select = [ "E", "F", "I", "N", "RUF", "ANN", "A" ]
select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
ignore = ["E501", "E402", "ANN101", "ANN401", "A003"]

View File

@ -30,5 +30,5 @@ ignore_missing_imports = true
[tool.ruff]
target-version = "py311"
line-length = 88
select = [ "E", "F", "I", "N", "RUF", "ANN", "A" ]
select = [ "E", "F", "I", "U", "N", "RUF", "ANN", "A" ]
ignore = ["E501", "E402", "N802", "ANN101", "ANN401", "A003"]