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 077a5fa commit 3ddb12cCopy full SHA for 3ddb12c
custom_components/generac/config_flow.py
@@ -27,6 +27,12 @@ def __init__(self):
27
"""Initialize."""
28
self._errors = {}
29
30
+ async def async_step_reconfigure(
31
+ self, user_input=None
32
+ ): # pylint: disable=unused-argument
33
+ """Manage the options."""
34
+ return await self.async_step_user(user_input)
35
+
36
async def async_step_user(self, user_input=None):
37
"""Handle a flow initialized by the user."""
38
0 commit comments