From 60d5d7ce2ff61189902cc99270fd00c2fae1cd6e Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 8 Mar 2026 21:52:35 -0400 Subject: [PATCH] fix: add missing return value --- roborock/data/v1/v1_containers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/roborock/data/v1/v1_containers.py b/roborock/data/v1/v1_containers.py index e266a85b..181f90be 100644 --- a/roborock/data/v1/v1_containers.py +++ b/roborock/data/v1/v1_containers.py @@ -400,6 +400,7 @@ def clean_fluid_status(self) -> CleanFluidStatus | None: value = (self.dss >> 10) & 3 if value == 0: return None # Feature not supported by this device + return CleanFluidStatus(value) return None @property