Skip to content

Commit 409dcf5

Browse files
authored
Merge pull request #370 from jwillemsen/jwi-increaseignoretime
Increase max ignore time to 300
2 parents 5575136 + efcf3ae commit 409dcf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/daikin_onecta/config_flow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def async_step_init(self, user_input: dict[str, str] | None = None) -> Flo
6060
"scan_ignore",
6161
default=self.options.get("scan_ignore", 30),
6262
): NumberSelector(
63-
NumberSelectorConfig(min=20, max=100, step=1),
63+
NumberSelectorConfig(min=20, max=300, step=1),
6464
),
6565
}
6666
),

0 commit comments

Comments
 (0)