Skip to content

Commit 3c4163d

Browse files
committed
Fix step ID
1 parent 26eca96 commit 3c4163d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

custom_components/bluecon/config_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None)
9090
if user_input is not None:
9191
try:
9292
entry = self.hass.config_entries.async_entry_for_domain_unique_id(DOMAIN, user_input[CONF_USERNAME])
93-
93+
9494
tokenStorage: IOAuthTokenStorage = ConfigFolderOAuthTokenStorage(self.hass)
9595
notificationInfoStorage: INotificationInfoStorage = ConfigFolderNotificationInfoStorage(self.hass)
9696
await BlueConAPI.create(
@@ -128,7 +128,7 @@ async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None)
128128
error_info['base'] = 'invalid_auth'
129129

130130
return self.async_show_form(
131-
step_id = "user",
131+
step_id = "reconfigure",
132132
data_schema = vol.Schema({
133133
vol.Required(CONF_USERNAME): str,
134134
vol.Required(CONF_PASSWORD): str,

0 commit comments

Comments
 (0)