diff --git a/homeassistant/components/august/config_flow.py b/homeassistant/components/august/config_flow.py index f22b16008d3..8aaf1b1a05b 100644 --- a/homeassistant/components/august/config_flow.py +++ b/homeassistant/components/august/config_flow.py @@ -271,6 +271,4 @@ class AugustConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): if not existing_entry: return self.async_create_entry(title=info["title"], data=info["data"]) - self.hass.config_entries.async_update_entry(existing_entry, data=info["data"]) - await self.hass.config_entries.async_reload(existing_entry.entry_id) - return self.async_abort(reason="reauth_successful") + return self.async_update_reload_and_abort(existing_entry, data=info["data"])