Enable strict typing for ipp (#98792)

enable strict typing for ipp
This commit is contained in:
Chris Talkington
2023-08-23 12:45:49 -05:00
committed by GitHub
parent 3c10d0e1f7
commit 22c1ddef71
3 changed files with 13 additions and 2 deletions

View File

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