diff --git a/adafruit_led_animation/sequence.py b/adafruit_led_animation/sequence.py index f1aba9c..31aac05 100644 --- a/adafruit_led_animation/sequence.py +++ b/adafruit_led_animation/sequence.py @@ -317,6 +317,6 @@ def on_cycle_complete(self): super().on_cycle_complete() self._running = False - def animate(self): - super().animate() + def animate(self, show=True): + super().animate(show) return self._running