Skip to content

Commit 4134d16

Browse files
committed
Reformatted per pre-commit
1 parent e220623 commit 4134d16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

displayio_effects/fluctuation_effect.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def update_fluctuation(self):
6767
if self._fluctuation_destination in (None, self._fluctuation_hold_value):
6868
limit_bound = self._fluctuation_amplitude * 10
6969
self._fluctuation_destination = (
70-
random.uniform(-limit_bound, limit_bound) / 10 + self._fluctuation_hold_value
70+
random.uniform(-limit_bound, limit_bound) / 10
71+
+ self._fluctuation_hold_value
7172
)
7273

7374
value = getattr(self, self._value_name)

0 commit comments

Comments
 (0)