We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e220623 commit 4134d16Copy full SHA for 4134d16
displayio_effects/fluctuation_effect.py
@@ -67,7 +67,8 @@ def update_fluctuation(self):
67
if self._fluctuation_destination in (None, self._fluctuation_hold_value):
68
limit_bound = self._fluctuation_amplitude * 10
69
self._fluctuation_destination = (
70
- random.uniform(-limit_bound, limit_bound) / 10 + self._fluctuation_hold_value
+ random.uniform(-limit_bound, limit_bound) / 10
71
+ + self._fluctuation_hold_value
72
)
73
74
value = getattr(self, self._value_name)
0 commit comments