From ed5b2ecabf7b84d8d5fad8fcf3560b66d34235c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 31 Jul 2025 12:19:59 +0000 Subject: [PATCH] Fix Remote Calendar ContextVar deprecation warning by passing config_entry explicitly Co-authored-by: joostlek <7083755+joostlek@users.noreply.github.com> --- homeassistant/components/remote_calendar/coordinator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/remote_calendar/coordinator.py b/homeassistant/components/remote_calendar/coordinator.py index 26876b53224..9ec00ba822d 100644 --- a/homeassistant/components/remote_calendar/coordinator.py +++ b/homeassistant/components/remote_calendar/coordinator.py @@ -37,6 +37,7 @@ class RemoteCalendarDataUpdateCoordinator(DataUpdateCoordinator[Calendar]): super().__init__( hass, _LOGGER, + config_entry=config_entry, name=f"{DOMAIN}_{config_entry.title}", update_interval=SCAN_INTERVAL, always_update=True,