Skip to content

Commit 1ac6f67

Browse files
committed
make it fit 100 chars
1 parent 0f8f539 commit 1ac6f67

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_led_animation/animation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,8 @@ def draw(self):
369369
time_since_last_draw = (now - self._last_update) / 1000000000
370370
self._last_update = now
371371
self._cycle_position = (self._cycle_position + time_since_last_draw) % self._period
372-
intensity = self.min_intensity + (sin(self._radians_per_second * self._cycle_position) * self._intensity_delta)
372+
intensity = self.min_intensity + (
373+
sin(self._radians_per_second * self._cycle_position) * self._intensity_delta)
373374

374375
color = [int(self._color[n] * intensity) for n in range(self._bpp)]
375376
self.fill(color)

0 commit comments

Comments
 (0)