Skip to content

Commit

Permalink
Merge pull request #212 from CFenner/patch-1
Browse files Browse the repository at this point in the history
fix(setup): correct parameter name in config form
  • Loading branch information
JurajNyiri authored Oct 19, 2022
2 parents 85cefcb + fe91fec commit ff7c427
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions custom_components/tapo_control/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ async def async_step_other_options(self, user_input=None):
}
),
errors=errors,
last_step=True,
)

async def async_step_auth_cloud_password(self, user_input=None):
Expand Down Expand Up @@ -260,6 +261,7 @@ async def async_step_auth_cloud_password(self, user_input=None):
}
),
errors=errors,
last_step=False,
)

async def async_step_ip(self, user_input=None):
Expand Down Expand Up @@ -339,6 +341,7 @@ async def async_step_ip(self, user_input=None):
}
),
errors=errors,
last_step=False,
)

async def async_step_auth(self, user_input=None):
Expand Down Expand Up @@ -438,6 +441,7 @@ async def async_step_auth(self, user_input=None):
}
),
errors=errors,
last_step=False,
)


Expand Down

0 comments on commit ff7c427

Please sign in to comment.