Enable ruff setting ignore-init-module-imports

This commit is contained in:
Dominik Jain 2023-09-20 11:27:00 +02:00
parent 25c6bbd38c
commit 2a1cc6bb55

View File

@ -140,6 +140,7 @@ extend-fixable = [
"F401", # unused import
"B905" , # bugbear
]
ignore-init-module-imports = true # without this, "unused" imports in __init__ will be auto-removed, breaking imports
target-version = "py311"