1
mirror of https://github.com/home-assistant/core synced 2024-09-28 03:04:04 +02:00

SleepIQ to not retry a re-auth right away

This commit is contained in:
Paulus Schoutsen 2022-12-11 21:43:25 -05:00
parent 1c0543bcd5
commit 39fecb523d

View File

@ -85,7 +85,7 @@ class SleepIQFlowHandler(ConfigFlow, domain=DOMAIN):
self._reauth_entry = self.hass.config_entries.async_get_entry(
self.context["entry_id"]
)
return await self.async_step_reauth_confirm(dict(entry_data))
return await self.async_step_reauth_confirm()
async def async_step_reauth_confirm(
self, user_input: dict[str, Any] | None = None