Removing speed arg from Solid color
This commit is contained in:
parent
487bf35adc
commit
48fa1f4e5e
1 changed files with 2 additions and 2 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue