From 367d893fc890f2701133c96193f384b0207b4590 Mon Sep 17 00:00:00 2001 From: Michael Arthur Date: Mon, 4 Sep 2023 01:53:23 +1200 Subject: [PATCH] Bugfix: Electric Kiwi reduce interval so oauth doesn't expire (#99489) decrease interval time as EK have broken/changed their oauth again --- homeassistant/components/electric_kiwi/coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/electric_kiwi/coordinator.py b/homeassistant/components/electric_kiwi/coordinator.py index 49611f9febd1f..b084f4656d50b 100644 --- a/homeassistant/components/electric_kiwi/coordinator.py +++ b/homeassistant/components/electric_kiwi/coordinator.py @@ -14,7 +14,7 @@ _LOGGER = logging.getLogger(__name__) -HOP_SCAN_INTERVAL = timedelta(hours=2) +HOP_SCAN_INTERVAL = timedelta(minutes=20) class ElectricKiwiHOPDataCoordinator(DataUpdateCoordinator[Hop]):