Skip to content

Commit 9a0baec

Browse files
authored
Merge pull request #2 from bahoo/fix/options-flow-config-entry
Fix OptionsFlowHandler for HA 2025.12+
2 parents a0bac4d + 4ddd878 commit 9a0baec

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

custom_components/fellow/config_flow.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,12 @@ async def async_step_user(
7575
@callback
7676
def async_get_options_flow(config_entry):
7777
"""Get the options flow for this handler."""
78-
return OptionsFlowHandler(config_entry)
78+
return OptionsFlowHandler()
7979

8080

8181
class OptionsFlowHandler(config_entries.OptionsFlow):
8282
"""Handle options flow for Stagg EKG."""
8383

84-
def __init__(self, config_entry: config_entries.ConfigEntry) -> None:
85-
"""Initialize options flow."""
86-
self.config_entry = config_entry
87-
8884
async def async_step_init(
8985
self, user_input: dict[str, Any] | None = None
9086
) -> FlowResult:

0 commit comments

Comments
 (0)