Enable strict typing for rfxtrx (#74927)

* Additional typing

* Enable strict typing

* Avoid changes causing coverage change

* Adjust comment on force update

* Rename to replace_devices

* Reduce typing scope

* Adjust mypy
This commit is contained in:
Joakim Plate
2022-09-23 16:47:58 +02:00
committed by GitHub
parent 67779089cd
commit ace9592aa1
12 changed files with 190 additions and 101 deletions

View File

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