# HG changeset patch # User drewp@bigasterisk.com # Date 1684742562 25200 # Node ID 54f4f5158ddf1605420623c68ff4b2ff8b1fcb65 # Parent 03d2f8c50a34efb9500d10efd217e666cab4a34f minor diff -r 03d2f8c50a34 -r 54f4f5158ddf light9/collector/collector.py --- a/light9/collector/collector.py Mon May 22 01:00:47 2023 -0700 +++ b/light9/collector/collector.py Mon May 22 01:02:42 2023 -0700 @@ -214,7 +214,7 @@ index = DmxMessageIndex(_index) outArray = pendingOut[outputUri] if outArray[index] != 0: - log.warn(f'conflict: {outputUri} output array was already nonzero at 0-based index {index}') + log.warning(f'conflict: {outputUri} output array was already nonzero at 0-based index {index}') raise ValueError(f"someone already wrote to index {index}") outArray[index] = value return pendingOut diff -r 03d2f8c50a34 -r 54f4f5158ddf light9/effect/settings.py --- a/light9/effect/settings.py Mon May 22 01:00:47 2023 -0700 +++ b/light9/effect/settings.py Mon May 22 01:02:42 2023 -0700 @@ -288,7 +288,7 @@ @dataclass class BareEffectSettings: - # settings not specific to any effect + # settings for an already-selected EffectClass s: Dict[EffectAttr, VTUnion] def withStrength(self, strength: float) -> BareEffectSettings: diff -r 03d2f8c50a34 -r 54f4f5158ddf light9/effect/simple_outputs_test.py