Add alarm_control_panel setup type hints (#63264)

Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
epenet 2022-01-03 10:57:25 +01:00 committed by GitHub
parent e9b746e874
commit 24fc0df4b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 194 additions and 29 deletions

View file

@ -1,4 +1,6 @@
"""Support for Template alarm control panels."""
from __future__ import annotations
from enum import Enum
import logging
@ -30,11 +32,13 @@ from homeassistant.const import (
STATE_ALARM_TRIGGERED,
STATE_UNAVAILABLE,
)
from homeassistant.core import callback
from homeassistant.core import HomeAssistant, callback
from homeassistant.exceptions import TemplateError
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import async_generate_entity_id
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.script import Script
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
from .const import DOMAIN
from .template_entity import TemplateEntity
@ -112,7 +116,12 @@ async def _async_create_entities(hass, config):
return alarm_control_panels
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
async def async_setup_platform(
hass: HomeAssistant,
config: ConfigType,
async_add_entities: AddEntitiesCallback,
discovery_info: DiscoveryInfoType | None = None,
) -> None:
"""Set up the Template Alarm Control Panels."""
async_add_entities(await _async_create_entities(hass, config))