From 13e73cb84e45fa29a6945417a6b65b60414493d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Felipe=20Londo=C3=B1o=20L?= <6529573+lflondonol92@users.noreply.github.com> Date: Fri, 27 Dec 2024 19:39:07 -0500 Subject: [PATCH] Adding 6 as a valid option for the manual feed --- custom_components/petkit/text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/petkit/text.py b/custom_components/petkit/text.py index 2dedc42..8455252 100644 --- a/custom_components/petkit/text.py +++ b/custom_components/petkit/text.py @@ -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(