Removing speed arg from Solid color

This commit is contained in:
Kattni Rembor 2019-12-02 18:00:34 -05:00
parent 487bf35adc
commit 48fa1f4e5e

View file

@ -149,8 +149,8 @@ class Solid(ColorCycle):
"""
A solid color.
"""
def __init__(self, pixel_object, speed, color):
super(Solid, self).__init__(pixel_object, speed, [color])
def __init__(self, pixel_object, color):
super(Solid, self).__init__(pixel_object, [color])
def _recompute_color(self, color):
self.colors = [color, BLACK]