From c1c1ac4793d81bd93e26174b84eb6beb72fa62e7 Mon Sep 17 00:00:00 2001 From: Jalakas Date: Thu, 29 Jan 2026 18:30:44 +0000 Subject: [PATCH] Update config_flow.py Fix for Config flow that could not be loaded after update to HA 2025.12. Inspired by: https://github.com/rospogrigio/localtuya/commit/59c95cd06c2696afc98f6bc52d5fa060f3c517da --- custom_components/panasonic_cc/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/panasonic_cc/config_flow.py b/custom_components/panasonic_cc/config_flow.py index 8402645..4157e10 100644 --- a/custom_components/panasonic_cc/config_flow.py +++ b/custom_components/panasonic_cc/config_flow.py @@ -188,7 +188,7 @@ class PanasonicOptionsFlowHandler(config_entries.OptionsFlow): def __init__(self, config_entry): """Initialize Panasonic options flow.""" - self.config_entry = config_entry + self._config_entry = config_entry async def async_step_init( self, user_input: Optional[Dict[str, Any]] = None