Enable strict typing check for Anthropic (#163013)

This commit is contained in:
Denis Shulyaka
2026-02-14 22:04:29 +03:00
committed by GitHub
parent 3d354da104
commit b47dd2f923
6 changed files with 29 additions and 10 deletions

10
mypy.ini generated
View File

@@ -595,6 +595,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.anthropic.*]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.apache_kafka.*]
check_untyped_defs = true
disallow_incomplete_defs = true