Skip to content

Commit

Permalink
Merge pull request #15 from lflondonol92/master
Browse files Browse the repository at this point in the history
Adding 6 as a valid option for the manual feed
  • Loading branch information
Jezza34000 authored Dec 28, 2024
2 parents 23a1b7a + 13e73cb commit 842b0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/petkit/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async def async_set_value(self, value: str) -> None:
valid_values = list(range(5, 201))
else:
# Other, D4sh => 1,2,3,4,5,7,8,9,10
valid_values = [1, 2, 3, 4, 5, 7, 8, 9, 10]
valid_values = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

if int(value) not in valid_values:
raise ValueError(
Expand Down

0 comments on commit 842b0b4

Please sign in to comment.