Skip to content

Commit

Permalink
Fix Merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
mkmer authored Dec 4, 2024
1 parent 31e778a commit a97d390
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions homeassistant/components/honeywell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit a97d390

Please sign in to comment.