Fixed another error

This commit is contained in:
Pünkösd Marcell 2020-09-30 05:06:03 +02:00
parent dd8000de8b
commit f1b90533a8
1 changed files with 2 additions and 2 deletions

View File

@ -68,10 +68,10 @@ class BlinkenLights(Thread):
while self._active:
time.sleep(0.2)
for name, led in self._led_controllers:
for name, led in self._led_controllers.items():
led.clk()
for name, led in self._led_controllers:
for name, led in self._led_controllers.items():
led.cleanup()
def enqueue_pattern(self, target: str, pattern: list):