From f0df25f82444850dc3c4f49b53d19c9089cb0e42 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:03:18 +0200 Subject: [PATCH] Use _get_reauth_entry in azure_devops config flow (#127321) --- homeassistant/components/azure_devops/config_flow.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/homeassistant/components/azure_devops/config_flow.py b/homeassistant/components/azure_devops/config_flow.py index ffb0abf609a..995f9c5f5a1 100644 --- a/homeassistant/components/azure_devops/config_flow.py +++ b/homeassistant/components/azure_devops/config_flow.py @@ -113,10 +113,8 @@ class AzureDevOpsFlowHandler(ConfigFlow, domain=DOMAIN): if errors is not None: return await self._show_reauth_form(errors) - entry = await self.async_set_unique_id(self.unique_id) - assert entry self.hass.config_entries.async_update_entry( - entry, + self._get_reauth_entry(), data={ CONF_ORG: self._organization, CONF_PROJECT: self._project,