У меня есть следующая файловая структура:< /p>
Код: Выделить всё
src
--app
--generated
--service
--data
--ingest
Код: Выделить всё
pyproject.toml:
...
[tool.mypy]
python_version = 3.8
disallow_untyped_defs = true
exclude = "(src/app/generated)|(src/ingest)"
...
Код: Выделить всё
...
[tool.mypy]
python_version = 3.8
disallow_untyped_defs = true
exclude = "(src/app)|(src/ingest)"
...
Код: Выделить всё
mypy src --config-file ./pyproject.toml
Success: no issues found in 1 source file
Подробнее здесь: https://stackoverflow.com/questions/696 ... irectories