From 8625b772e3bba923c7b14064667d2b48ea583ddc Mon Sep 17 00:00:00 2001 From: tkdrob Date: Thu, 4 Feb 2021 07:05:46 -0500 Subject: [PATCH] Use core constants for alert (#45935) --- homeassistant/components/alert/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/alert/__init__.py b/homeassistant/components/alert/__init__.py index 53b1a1248dc..73bea193394 100644 --- a/homeassistant/components/alert/__init__.py +++ b/homeassistant/components/alert/__init__.py @@ -14,6 +14,7 @@ from homeassistant.const import ( ATTR_ENTITY_ID, CONF_ENTITY_ID, CONF_NAME, + CONF_REPEAT, CONF_STATE, SERVICE_TOGGLE, SERVICE_TURN_OFF, @@ -33,7 +34,6 @@ DOMAIN = "alert" CONF_CAN_ACK = "can_acknowledge" CONF_NOTIFIERS = "notifiers" -CONF_REPEAT = "repeat" CONF_SKIP_FIRST = "skip_first" CONF_ALERT_MESSAGE = "message" CONF_DONE_MESSAGE = "done_message"