Skip to content

Commit

Permalink
Increase max ignore time to 300
Browse files Browse the repository at this point in the history
    * custom_components/daikin_onecta/config_flow.py:
  • Loading branch information
jwillemsen committed Dec 9, 2024
1 parent 5575136 commit efcf3ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/daikin_onecta/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def async_step_init(self, user_input: dict[str, str] | None = None) -> Flo
"scan_ignore",
default=self.options.get("scan_ignore", 30),
): NumberSelector(
NumberSelectorConfig(min=20, max=100, step=1),
NumberSelectorConfig(min=20, max=300, step=1),
),
}
),
Expand Down

0 comments on commit efcf3ae

Please sign in to comment.