Bugfix: Electric Kiwi reduce interval so oauth doesn't expire (#99489)

decrease interval time as EK have broken/changed their oauth again
This commit is contained in:
Michael Arthur
2023-09-04 01:53:23 +12:00
committed by GitHub
parent 00893bbf14
commit 31d1752c74

View File

@@ -14,7 +14,7 @@ from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, Upda
_LOGGER = logging.getLogger(__name__)
HOP_SCAN_INTERVAL = timedelta(hours=2)
HOP_SCAN_INTERVAL = timedelta(minutes=20)
class ElectricKiwiHOPDataCoordinator(DataUpdateCoordinator[Hop]):