Enable strict typing for shopping_list (#107913)

This commit is contained in:
Marc Mueller
2024-01-14 09:38:53 +01:00
committed by GitHub
parent d4cb055d75
commit 88d7fc87c9
4 changed files with 53 additions and 22 deletions

View File

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