From c2a011b16f9b02880fc3dc673b5b12501f7995fc Mon Sep 17 00:00:00 2001 From: Erik Date: Wed, 14 May 2025 08:21:11 +0200 Subject: [PATCH] Silence mypy --- homeassistant/components/device_automation/trigger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/device_automation/trigger.py b/homeassistant/components/device_automation/trigger.py index cc8c4d4d52e..98cfee35413 100644 --- a/homeassistant/components/device_automation/trigger.py +++ b/homeassistant/components/device_automation/trigger.py @@ -37,7 +37,7 @@ class DeviceAutomationTriggerProtocol(TriggerProtocol, Protocol): ) -> dict[str, vol.Schema]: """List trigger capabilities.""" - async def async_get_triggers( + async def async_get_triggers( # type: ignore[override] self, hass: HomeAssistant, device_id: str ) -> list[dict[str, Any]]: """List triggers."""