From 21f8ad139e210aa64e08178fe726ad6f6435d3c9 Mon Sep 17 00:00:00 2001 From: javydekoning Date: Thu, 4 Sep 2025 09:39:05 +0200 Subject: [PATCH] Fix for https://github.com/home-assistant/core/issues/148771 --- src/pymelcloud/atw_device.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pymelcloud/atw_device.py b/src/pymelcloud/atw_device.py index 07fecef..f4a2fd0 100644 --- a/src/pymelcloud/atw_device.py +++ b/src/pymelcloud/atw_device.py @@ -242,8 +242,6 @@ def operation_mode(self) -> Optional[str]: if state is None: return None - print(state) - mode = state.get(f"OperationModeZone{self.zone_index}") if not isinstance(mode, int): raise ValueError(f"Invalid operation mode [{mode}]")