From 0e18581a91261b859e17ca6e35c22c718f77eb73 Mon Sep 17 00:00:00 2001 From: markfrancisonly <12145270+markfrancisonly@users.noreply.github.com> Date: Sat, 4 Jan 2025 09:30:10 -0500 Subject: [PATCH] Typo in homeassistant_stop listener --- custom_components/bhyve/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/bhyve/__init__.py b/custom_components/bhyve/__init__.py index 711ca26..04c645a 100644 --- a/custom_components/bhyve/__init__.py +++ b/custom_components/bhyve/__init__.py @@ -124,7 +124,7 @@ async def async_update_callback(data): await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) entry.async_on_unload(entry.add_update_listener(update_listener)) - hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, client.stop()) + hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, client.stop) return True