From 368a1a944a5081130a0c95e4898631da32fddaee Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Tue, 12 Sep 2023 12:08:13 -0700 Subject: [PATCH] Remove the uniqueid from todoist (#100206) --- homeassistant/components/todoist/config_flow.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/homeassistant/components/todoist/config_flow.py b/homeassistant/components/todoist/config_flow.py index 0a41ecb0463..6098df40ea0 100644 --- a/homeassistant/components/todoist/config_flow.py +++ b/homeassistant/components/todoist/config_flow.py @@ -51,8 +51,6 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): _LOGGER.exception("Unexpected exception") errors["base"] = "unknown" else: - await self.async_set_unique_id(user_input[CONF_TOKEN]) - self._abort_if_unique_id_configured() return self.async_create_entry(title="Todoist", data=user_input) return self.async_show_form(