Skip to content

Commit

Permalink
Fix flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Mamontov committed Apr 8, 2022
1 parent 83ec3b6 commit f7abb8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions custom_components/miwifi/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ async def async_step_user(
vol.Required(
CONF_SCAN_INTERVAL, default=DEFAULT_SCAN_INTERVAL
): vol.All(vol.Coerce(int), vol.Range(min=10)),
vol.Optional(
CONF_TIMEOUT,
default=DEFAULT_TIMEOUT,
): vol.All(vol.Coerce(int), vol.Range(min=10)),
}
),
errors=errors,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/miwifi/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "miwifi",
"name": "MiWiFi",
"version": "2.2.0",
"version": "2.2.1",
"documentation": "https://github.com/dmamontov/hass-miwifi/blob/main/README.md",
"issue_tracker": "https://github.com/dmamontov/hass-miwifi/issues",
"config_flow": true,
Expand Down

0 comments on commit f7abb8f

Please sign in to comment.