Skip to content

Commit 59c95cd

Browse files
authored
Update config_flow.py
Fix for Config flow that could not be loaded after update to HA 2025.12 (Issue #2124)
1 parent 9eabc43 commit 59c95cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/localtuya/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class LocalTuyaOptionsFlowHandler(config_entries.OptionsFlow):
393393

394394
def __init__(self, config_entry):
395395
"""Initialize localtuya options flow."""
396-
self.config_entry = config_entry
396+
self._config_entry = config_entry
397397
# self.dps_strings = config_entry.data.get(CONF_DPS_STRINGS, gen_dps_strings())
398398
# self.entities = config_entry.data[CONF_ENTITIES]
399399
self.selected_device = None

0 commit comments

Comments
 (0)