Fix wrong import.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user