Skip to content

Commit

Permalink
Merge pull request #370 from jwillemsen/jwi-increaseignoretime
Browse files Browse the repository at this point in the history
Increase max ignore time to 300
  • Loading branch information
jwillemsen authored Dec 9, 2024
2 parents 5575136 + efcf3ae commit 409dcf5
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 409dcf5

Please sign in to comment.