From c31f790fc3c1e66a5d802f759f07dfe4049cf529 Mon Sep 17 00:00:00 2001 From: Erik Date: Wed, 22 Feb 2023 08:21:15 +0100 Subject: [PATCH] Tweak docstring --- homeassistant/helpers/trigger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/helpers/trigger.py b/homeassistant/helpers/trigger.py index 9bafa60a8d3..187ac7fa9f5 100644 --- a/homeassistant/helpers/trigger.py +++ b/homeassistant/helpers/trigger.py @@ -42,7 +42,8 @@ DATA_PLUGGABLE_ACTIONS = "pluggable_actions" class TriggerProtocol(Protocol): """Define the format of trigger modules. - Each module must define either TRIGGER_SCHEMA or async_validate_trigger_config. + Each module must define either TRIGGER_SCHEMA or async_validate_trigger_config + from TriggerProtocol. """ TRIGGER_SCHEMA: vol.Schema