make all same-module imports relative, the rest absolute

This makes sorting more consitent.
This commit is contained in:
Jörg Thalheim
2024-09-02 12:55:07 +02:00
parent 9fea3f909e
commit b313f2d066
56 changed files with 196 additions and 185 deletions

View File

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