1
0
mirror of https://github.com/elisspace/core.git synced 2026-09-02 17:35:52 +00:00

Fix mypy in ci by removing unneeded ignore in zone init (#32997)

This commit is contained in:
Alexei Chetroi
2020-03-19 11:44:52 -04:00
committed by GitHub
parent 445ef861c0
commit 242aff9269

View File

@@ -237,7 +237,7 @@ async def async_setup(hass: HomeAssistant, config: Dict) -> bool:
home_zone = Zone(_home_conf(hass), True,)
home_zone.entity_id = ENTITY_ID_HOME
await component.async_add_entities([home_zone]) # type: ignore
await component.async_add_entities([home_zone])
async def core_config_updated(_: Event) -> None:
"""Handle core config updated."""