Skip to content

Commit

Permalink
Merge pull request #5 from Jurkash/develop
Browse files Browse the repository at this point in the history
Update group selector
  • Loading branch information
Jurkash authored Jul 13, 2024
2 parents ddb6a22 + a082876 commit 9d98400
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions custom_components/loe_outages/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ def build_schema(config_entry: ConfigEntry) -> vol.Schema:
{
"select": {
"options": [
{"value": str(i), "label": f"Group {i}"}
for i in range(1, 7)
{"value": f"{i}.{j}", "label": f"Group {i}.{j}"}
for i in range(1, 4)
for j in range(1, 3)
],
},
},
Expand Down

0 comments on commit 9d98400

Please # to comment.