diff --git a/custom_components/govee/__init__.py b/custom_components/govee/__init__.py index b92ceaa..b966d33 100644 --- a/custom_components/govee/__init__.py +++ b/custom_components/govee/__init__.py @@ -64,7 +64,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): _, err = await hub.get_devices() if err: _LOGGER.warning("Could not connect to Govee API: %s", err) - await hub.rate_limit_delay() + await hub.rate_limit_reset() await async_unload_entry(hass, entry) raise PlatformNotReady()