diff --git a/adafruit_led_animation/animation.py b/adafruit_led_animation/animation.py index 119b198..fd82863 100644 --- a/adafruit_led_animation/animation.py +++ b/adafruit_led_animation/animation.py @@ -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]