Skip to content

Commit 8eaa5a5

Browse files
committed
Fix for removed get_led_count() function.
1 parent 03a46ea commit 8eaa5a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/led_effect.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def _handle_ready(self):
394394
self.ledChains.append(ledChain)
395395

396396
if ledIndices == [] :
397-
for i in range(ledChain.led_helper.get_led_count()):
397+
for i in range(ledChain.led_helper.led_count):
398398
self.leds.append((ledChain, int(i)))
399399
else:
400400
for led in ledIndices:

0 commit comments

Comments
 (0)