refactor: enabled importing all from module in ruff

This commit is contained in:
2025-08-24 12:58:46 +04:00
parent dd1f4145ae
commit b4b29d448b
9 changed files with 9 additions and 68 deletions

View File

@ -40,7 +40,7 @@ target-version = "py313"
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E4", "E7", "E9", "F"]
ignore = []
ignore = ["F403", "F405"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]