From eaa9c4d437d966e4ff415db69c32cf9d44fec037 Mon Sep 17 00:00:00 2001 From: Malte Franken Date: Wed, 23 Jan 2019 20:04:41 +1100 Subject: [PATCH] Remove creation of geolocation default group (#20338) --- homeassistant/components/geo_location/__init__.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/homeassistant/components/geo_location/__init__.py b/homeassistant/components/geo_location/__init__.py index 4e05c5b41fe..4597a56c61a 100644 --- a/homeassistant/components/geo_location/__init__.py +++ b/homeassistant/components/geo_location/__init__.py @@ -22,15 +22,12 @@ DOMAIN = 'geo_location' ENTITY_ID_FORMAT = DOMAIN + '.{}' -GROUP_NAME_ALL_EVENTS = 'All Geolocation Events' - SCAN_INTERVAL = timedelta(seconds=60) async def async_setup(hass, config): """Set up the Geolocation component.""" - component = EntityComponent( - _LOGGER, DOMAIN, hass, SCAN_INTERVAL, GROUP_NAME_ALL_EVENTS) + component = EntityComponent(_LOGGER, DOMAIN, hass, SCAN_INTERVAL) await component.async_setup(config) return True