Activate mypy for Solar-Log (#53952)
parent
355a067d84
commit
814411dc1d
|
@ -31,7 +31,7 @@ class SolarLogConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||
|
||||
def __init__(self) -> None:
|
||||
"""Initialize the config flow."""
|
||||
self._errors = {}
|
||||
self._errors: dict = {}
|
||||
|
||||
def _host_in_configuration_exists(self, host) -> bool:
|
||||
"""Return True if host exists in configuration."""
|
||||
|
|
3
mypy.ini
3
mypy.ini
|
@ -1643,9 +1643,6 @@ ignore_errors = true
|
|||
[mypy-homeassistant.components.solaredge.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.solarlog.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.somfy.*]
|
||||
ignore_errors = true
|
||||
|
||||
|
|
|
@ -140,7 +140,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
|||
"homeassistant.components.smarttub.*",
|
||||
"homeassistant.components.smarty.*",
|
||||
"homeassistant.components.solaredge.*",
|
||||
"homeassistant.components.solarlog.*",
|
||||
"homeassistant.components.somfy.*",
|
||||
"homeassistant.components.somfy_mylink.*",
|
||||
"homeassistant.components.sonarr.*",
|
||||
|
|
Loading…
Reference in New Issue