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.
2 parents 5efafc7 + a84c11d commit dce6bc0Copy full SHA for dce6bc0
custom_components/enphase_envoy/config_flow.py
@@ -220,17 +220,13 @@ async def async_step_user(
220
221
@staticmethod
222
@callback
223
- def async_get_options_flow(config_entry):
224
- return EnvoyOptionsFlowHandler(config_entry)
+ def async_get_options_flow(config_entry: ConfigEntry):
+ return EnvoyOptionsFlowHandler()
225
226
227
class EnvoyOptionsFlowHandler(config_entries.OptionsFlow):
228
"""Envoy config flow options handler."""
229
230
- def __init__(self, config_entry):
231
- """Initialize Envoy options flow."""
232
- self.config_entry = config_entry
233
-
234
async def async_step_init(self, _user_input=None):
235
"""Manage the options."""
236
return await self.async_step_user()
0 commit comments