We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1729d05 commit 785f972Copy full SHA for 785f972
custom_components/aqara_gateway/config_flow.py
@@ -44,7 +44,7 @@ def __init__(self):
44
@callback
45
def async_get_options_flow(config_entry: ConfigEntry):
46
""" get option flow """
47
- return OptionsFlowHandler(config_entry)
+ return OptionsFlowHandler()
48
49
async def async_step_user(
50
self,
@@ -251,10 +251,6 @@ class OptionsFlowHandler(OptionsFlow):
251
_token = None
252
_model = None
253
254
- def __init__(self, config_entry):
255
- """Initialize options flow."""
256
- self.config_entry = config_entry
257
-
258
async def async_step_init(self, user_input=None):
259
"""Manage options."""
260
if user_input is not None:
0 commit comments