Add strict typing to mikrotik (#76974)

add strict typing to mikrotik
This commit is contained in:
Rami Mosleh
2022-08-19 11:39:14 +03:00
committed by GitHub
parent 801f7d1d5f
commit 655e2f92ba
7 changed files with 88 additions and 68 deletions

View File

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