From d2b217e399479ca4c0714cb97d493b6fdda4d9aa Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 29 Oct 2020 14:57:45 -0700 Subject: [PATCH] Stop blocking zwave users (#51) --- custom_components/lock-manager/__init__.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/custom_components/lock-manager/__init__.py b/custom_components/lock-manager/__init__.py index eeb4904..0adba87 100644 --- a/custom_components/lock-manager/__init__.py +++ b/custom_components/lock-manager/__init__.py @@ -373,11 +373,9 @@ async def _generate_package(service): schema=vol.Schema({vol.Required(ATTR_ENTITY_ID): vol.Coerce(str),}), ) - # Load the code slot sensors if OZW is enabled - if config_entry.options[CONF_OZW]: - hass.async_create_task( - hass.config_entries.async_forward_entry_setup(config_entry, PLATFORM) - ) + hass.async_create_task( + hass.config_entries.async_forward_entry_setup(config_entry, PLATFORM) + ) # if the use turned on the bool generate the files if generate_package is not None: