From 1932e1efadc2de0aba494c3c8c649bfdb2d5b4b4 Mon Sep 17 00:00:00 2001 From: rsumner Date: Tue, 6 Jan 2026 17:01:00 -0600 Subject: [PATCH 1/2] property config_entry has no setter --- custom_components/apex/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/apex/config_flow.py b/custom_components/apex/config_flow.py index fea7b0f..2610e24 100644 --- a/custom_components/apex/config_flow.py +++ b/custom_components/apex/config_flow.py @@ -84,7 +84,7 @@ def async_get_options_flow(config_entry): class OptionsFlow(config_entries.OptionsFlow): def __init__(self, config_entry: config_entries.ConfigEntry): """Initialize options flow.""" - self.config_entry = config_entry + self._config_entry = config_entry async def async_step_init(self, user_input=None): if user_input is not None: From cbee18446fb60c4270add4f726f5f947fe86df7a Mon Sep 17 00:00:00 2001 From: rsumner Date: Tue, 6 Jan 2026 17:41:52 -0600 Subject: [PATCH 2/2] remove deprecated property from OptionsFlow --- custom_components/apex/config_flow.py | 1 - 1 file changed, 1 deletion(-) diff --git a/custom_components/apex/config_flow.py b/custom_components/apex/config_flow.py index 2610e24..1af9ae7 100644 --- a/custom_components/apex/config_flow.py +++ b/custom_components/apex/config_flow.py @@ -84,7 +84,6 @@ def async_get_options_flow(config_entry): class OptionsFlow(config_entries.OptionsFlow): def __init__(self, config_entry: config_entries.ConfigEntry): """Initialize options flow.""" - self._config_entry = config_entry async def async_step_init(self, user_input=None): if user_input is not None: