Skip to content

Commit

Permalink
config_flow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dudanov committed Jul 18, 2024
1 parent 3070d03 commit c84fb10
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions custom_components/ftms/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ async def async_step_init(
vol.Required(CONF_SENSORS): selector(
{
"select": {
"options": list(cli.available_properties),
"multiple": True,
"translation_key": "sensors",
"options": list(cli.available_properties),
"translation_key": CONF_SENSORS,
}
}
)
Expand Down Expand Up @@ -281,9 +281,9 @@ async def async_step_information(self, user_input=None):
vol.Required(CONF_SENSORS): selector(
{
"select": {
"options": list(self._ftms.available_properties),
"multiple": True,
"translation_key": "sensors",
"options": list(self._ftms.available_properties),
"translation_key": CONF_SENSORS,
}
}
),
Expand Down

0 comments on commit c84fb10

Please sign in to comment.