Skip to content

Commit 65376c6

Browse files
committed
blackness
1 parent 2af26b7 commit 65376c6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

adafruit_led_animation/animation/comet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(
7878
if tail_length == 0:
7979
tail_length = len(pixel_object) // 4
8080
if bounce and ring:
81-
raise ValueError('Cannot combine bounce and ring mode')
81+
raise ValueError("Cannot combine bounce and ring mode")
8282
self.reverse = reverse
8383
self.bounce = bounce
8484
self._initial_reverse = reverse

adafruit_led_animation/animation/rainbowcomet.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def __init__(
8282
else:
8383
self._colorwheel_step = step
8484
self._colorwheel_offset = colorwheel_offset
85-
super().__init__(pixel_object, speed, 0, tail_length, reverse, bounce, name, ring)
85+
super().__init__(
86+
pixel_object, speed, 0, tail_length, reverse, bounce, name, ring
87+
)
8688

8789
def _set_color(self, color):
8890
self._comet_colors = [BLACK]

0 commit comments

Comments
 (0)