From 5a993a3ff34a6c0fe58112b24efb5424e881cda0 Mon Sep 17 00:00:00 2001 From: tkdrob Date: Sun, 25 Apr 2021 21:22:01 -0400 Subject: [PATCH] Use core constants for apprise (#49683) --- homeassistant/components/apprise/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/apprise/notify.py b/homeassistant/components/apprise/notify.py index 5f4a6b66643..2aeeb62b00b 100644 --- a/homeassistant/components/apprise/notify.py +++ b/homeassistant/components/apprise/notify.py @@ -11,12 +11,12 @@ from homeassistant.components.notify import ( PLATFORM_SCHEMA, BaseNotificationService, ) +from homeassistant.const import CONF_URL import homeassistant.helpers.config_validation as cv _LOGGER = logging.getLogger(__name__) CONF_FILE = "config" -CONF_URL = "url" PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( {