chg: [typing] Make Mypy Happy Again.

This commit is contained in:
Cédric Bonhomme 2025-06-22 12:03:30 +02:00
parent 21004219fa
commit 18fd8a8a49
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
5 changed files with 43 additions and 21 deletions

View file

@ -73,7 +73,7 @@ optional = true
[tool.mypy]
python_version = "3.12"
python_version = "3.13"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
@ -87,7 +87,12 @@ warn_unreachable = true
show_error_context = true
pretty = true
exclude = "build|dist|docs|stegano.egg-info"
exclude = "build|dist|docs"
[tool.isort]
profile = "black"
[tool.flake8]
ignore = ["E203"]