From a97d390dcb466b486aa97be4238c1b667dc6098c Mon Sep 17 00:00:00 2001 From: mkmer Date: Wed, 4 Dec 2024 21:12:13 +0000 Subject: [PATCH] Fix Merge error --- homeassistant/components/honeywell/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/honeywell/__init__.py b/homeassistant/components/honeywell/__init__.py index 6cc8a531065ca..eb89ba2a6817d 100644 --- a/homeassistant/components/honeywell/__init__.py +++ b/homeassistant/components/honeywell/__init__.py @@ -88,8 +88,7 @@ async def async_setup_entry( if len(devices) == 0: _LOGGER.debug("No devices found") return False - data = HoneywellData(config_entry.entry_id, client, devices) - config_entry.runtime_data = data + config_entry.runtime_data = HoneywellData(config_entry.entry_id, client, devices) await hass.config_entries.async_forward_entry_setups(config_entry, PLATFORMS) config_entry.async_on_unload(config_entry.add_update_listener(update_listener))