From fb2ed2f016c913068f464929b400c127f55c935d Mon Sep 17 00:00:00 2001 From: Constantin Gierczak--Galle Date: Fri, 15 Dec 2023 17:42:49 +0100 Subject: [PATCH] Test thing --- pyjecteur/lights.py | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/pyjecteur/lights.py b/pyjecteur/lights.py index fef42e3..112d1a3 100644 --- a/pyjecteur/lights.py +++ b/pyjecteur/lights.py @@ -69,19 +69,18 @@ class AbstractLight: self._enable_auto_update: bool = False for key, rValueObject in self.__class__.__dict__.items(): - if isinstance(rValueObject, BaseReactiveValue): - # On copie la valeur - val = deepcopy(rValueObject.value) - if isinstance(val, ReactiveMixin): - val.light = self - val.key = key - self._attrs_to_dmx[key] = rValueObject.attr_to_dmx() + # On copie la valeur + val = deepcopy(rValueObject.value) + if isinstance(val, ReactiveMixin): + val.light = self + val.key = key + self._attrs_to_dmx[key] = rValueObject.attr_to_dmx() - for i, length, callback in rValueObject.dmx_to_attr(): - for k in range(i, i + length): - self._dmx_to_attrs[k] = (key, i, length, callback) - # Finally set the attributes to their value - setattr(self, key, val) + for i, length, callback in rValueObject.dmx_to_attr(): + for k in range(i, i + length): + self._dmx_to_attrs[k] = (key, i, length, callback) + # Finally set the attributes to their value + setattr(self, key, val) self._enable_auto_update: bool = True def register_universe(self, universe: "Universe") -> None: