Type check

This commit is contained in:
CPD 2025-02-25 12:11:31 +01:00
parent 0f460b7d02
commit 711d76f0db

View File

@ -76,6 +76,8 @@ class LedScript:
self.script = LedScript.parse_script(script, ignore_errors=False) self.script = LedScript.parse_script(script, ignore_errors=False)
self.filepath = script self.filepath = script
self.auto_update = auto_update self.auto_update = auto_update
else:
raise ValueError("Invalid value for script: Muse be int, np.ndarray or str")
self.observer = None self.observer = None
if self.auto_update: if self.auto_update:
self.start_updating() self.start_updating()