From cb4e886a4ff24d62d74ca444c8b14333667b1b55 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 9 Dec 2017 13:14:16 -0800 Subject: [PATCH] Make notify.html5 depend on config (#11052) --- homeassistant/components/notify/html5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/notify/html5.py b/homeassistant/components/notify/html5.py index 2314722a2ab..fb3cf0bbecd 100644 --- a/homeassistant/components/notify/html5.py +++ b/homeassistant/components/notify/html5.py @@ -29,7 +29,7 @@ from homeassistant.util import ensure_unique_string REQUIREMENTS = ['pywebpush==1.3.0', 'PyJWT==1.5.3'] -DEPENDENCIES = ['frontend'] +DEPENDENCIES = ['frontend', 'config'] _LOGGER = logging.getLogger(__name__)