fix(fase2): mypy-clean src — typed workflow factory + third-party stub config

This commit is contained in:
Kjell Tore Guttormsen 2026-06-24 14:01:27 +02:00
commit 4e87e473e4
2 changed files with 13 additions and 2 deletions

View file

@ -45,3 +45,11 @@ src = ["src", "tests", "spikes"]
pythonpath = ["src", "."]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.10"
# Third-party libs without bundled type stubs (py.typed) — analysed as untyped, not errors.
[[tool.mypy.overrides]]
module = ["pulp.*", "agent_framework_foundry.*"]
ignore_missing_imports = true