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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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."""