We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e0338 commit 5b39f80Copy full SHA for 5b39f80
1 file changed
custom_components/pstryk/config_flow.py
@@ -192,16 +192,12 @@ async def _check_mqtt_availability(self):
192
@staticmethod
193
def async_get_options_flow(config_entry):
194
"""Get the options flow for this handler."""
195
- return PstrykOptionsFlowHandler(config_entry)
+ return PstrykOptionsFlowHandler()
196
197
198
class PstrykOptionsFlowHandler(config_entries.OptionsFlow):
199
"""Handle options flow for Pstryk Energy - single page view."""
200
201
- def __init__(self, config_entry):
202
- """Initialize options flow."""
203
- super().__init__(config_entry)
204
-
205
async def async_step_init(self, user_input=None):
206
"""Manage the options - single page for quick configuration."""
207
errors = {}
0 commit comments