2 parents a0bac4d + 4ddd878 commit 9a0baecCopy full SHA for 9a0baec
1 file changed
custom_components/fellow/config_flow.py
@@ -75,16 +75,12 @@ async def async_step_user(
75
@callback
76
def async_get_options_flow(config_entry):
77
"""Get the options flow for this handler."""
78
- return OptionsFlowHandler(config_entry)
+ return OptionsFlowHandler()
79
80
81
class OptionsFlowHandler(config_entries.OptionsFlow):
82
"""Handle options flow for Stagg EKG."""
83
84
- def __init__(self, config_entry: config_entries.ConfigEntry) -> None:
85
- """Initialize options flow."""
86
- self.config_entry = config_entry
87
-
88
async def async_step_init(
89
self, user_input: dict[str, Any] | None = None
90
) -> FlowResult:
0 commit comments