Enable strict typing for openai_conversation (#127854)

This commit is contained in:
Marc Mueller
2024-10-08 08:06:05 +02:00
committed by GitHub
parent 9a0cb59830
commit 00ee2b4478
3 changed files with 15 additions and 3 deletions

View File

@@ -3205,6 +3205,16 @@ disallow_untyped_defs = true
warn_return_any = true
warn_unreachable = true
[mypy-homeassistant.components.openai_conversation.*]
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.openexchangerates.*]
check_untyped_defs = true
disallow_incomplete_defs = true