Fix wrong import.

This commit is contained in:
Frédéric Tronel
2026-08-28 17:13:13 +02:00
parent 7c539382e6
commit 413df48a77
3 changed files with 52 additions and 2 deletions
+33
View File
@@ -26,4 +26,37 @@ ruff = "^0.16.2"
mypy = "^2.3.0"
pytest = "^9.1.1"
pylint = "^4.0.7"
types-tqdm = "^4.70.0.20260827"
[tool.ruff]
target-version = "py311"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RET", # flake8-return
"PERF", # Perflint
]
[tool.mypy]
python_version = "3.11"
files = ["src"]
warn_unused_configs = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"coloredlogs",
"hexdump",
]
ignore_missing_imports = true