From bdb66635f8fde44d01b3f29d35ba2d1807d5a43d Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Sat, 2 May 2026 00:32:30 +0200 Subject: [PATCH] Pass `None` config entry to schluter coordinator (#169621) --- homeassistant/components/schluter/climate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/schluter/climate.py b/homeassistant/components/schluter/climate.py index 94eb00fe11b9..58d159bb06e3 100644 --- a/homeassistant/components/schluter/climate.py +++ b/homeassistant/components/schluter/climate.py @@ -62,6 +62,7 @@ async def async_setup_platform( coordinator = DataUpdateCoordinator( hass, _LOGGER, + config_entry=None, name="schluter", update_method=async_update_data, update_interval=SCAN_INTERVAL,