Improve device trigger type hinting (#54907)

This commit is contained in:
Ville Skyttä
2021-08-22 21:32:50 +03:00
committed by GitHub
parent bfb6eaf6f3
commit 0095c6baeb
26 changed files with 153 additions and 43 deletions
@@ -1,6 +1,8 @@
"""Provides device triggers for NEW_NAME."""
from __future__ import annotations
from typing import Any
import voluptuous as vol
from homeassistant.components.automation import AutomationActionType
@@ -32,7 +34,9 @@ TRIGGER_SCHEMA = DEVICE_TRIGGER_BASE_SCHEMA.extend(
)
async def async_get_triggers(hass: HomeAssistant, device_id: str) -> list[dict]:
async def async_get_triggers(
hass: HomeAssistant, device_id: str
) -> list[dict[str, Any]]:
"""List device triggers for NEW_NAME devices."""
registry = await entity_registry.async_get_registry(hass)
triggers = []