From ff35e7ea281af57b0e37c16c9e4446eece28c6fc Mon Sep 17 00:00:00 2001 From: CPD Date: Mon, 17 Mar 2025 16:42:05 +0100 Subject: [PATCH] Change check to < 0 --- cpdctrl/led_script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpdctrl/led_script.py b/cpdctrl/led_script.py index 85405cb..e1ee035 100644 --- a/cpdctrl/led_script.py +++ b/cpdctrl/led_script.py @@ -292,8 +292,8 @@ class LedScript: raise InvalidScriptUpdate(f"Cannot update row {idx+1} the script only has {n_rows} rows") if not (led >= 0 and led <= 100): raise InvalidScriptUpdate(f"Cannot update row {idx+1} because the led value {led}% is not in the range of 0%-100%") - if not (dt > 0): - raise InvalidScriptUpdate(f"Cannot update row {idx+1} because the dt value '{dt}' <= 0") + if dt < 0: + raise InvalidScriptUpdate(f"Cannot update row {idx+1} because the dt value '{dt}' < 0") if self.current_dt: current_idx = self.get_current_index(self.current_dt) if current_idx < idx: