Merge pull request #108 from tlyu/rainbowcomet-init

rainbowcomet: add missing arg initing base class
This commit is contained in:
Alec Delaney 2023-01-23 19:49:06 -08:00 committed by GitHub
commit b101ab80e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,7 +65,7 @@ class RainbowComet(Comet):
self._colorwheel_step = step self._colorwheel_step = step
self._colorwheel_offset = colorwheel_offset self._colorwheel_offset = colorwheel_offset
super().__init__( super().__init__(
pixel_object, speed, 0, tail_length, reverse, bounce, name, ring pixel_object, speed, 0, 0, tail_length, reverse, bounce, name, ring
) )
def _set_color(self, color): def _set_color(self, color):