From 59c95cd06c2696afc98f6bc52d5fa060f3c517da Mon Sep 17 00:00:00 2001 From: rospogrigio <49229287+rospogrigio@users.noreply.github.com> Date: Thu, 29 Jan 2026 12:02:56 +0100 Subject: [PATCH] Update config_flow.py Fix for Config flow that could not be loaded after update to HA 2025.12 (Issue #2124) --- custom_components/localtuya/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/localtuya/config_flow.py b/custom_components/localtuya/config_flow.py index 5c87e25..2573bc4 100644 --- a/custom_components/localtuya/config_flow.py +++ b/custom_components/localtuya/config_flow.py @@ -393,7 +393,7 @@ class LocalTuyaOptionsFlowHandler(config_entries.OptionsFlow): def __init__(self, config_entry): """Initialize localtuya options flow.""" - self.config_entry = config_entry + self._config_entry = config_entry # self.dps_strings = config_entry.data.get(CONF_DPS_STRINGS, gen_dps_strings()) # self.entities = config_entry.data[CONF_ENTITIES] self.selected_device = None