Skip to content

Commit 3336752

Browse files
committed
Missing closing parenthesis
1 parent 1123ddd commit 3336752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xled_plus/multicontrol.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(self, hostlst):
5757
self.nledslst = [info["number_of_led"] for info in infolst]
5858
self.num_leds = sum(self.nledslst)
5959
self.string_config = [{'first_led_id': 0, 'length': self.num_leds}]
60-
self.max_movies = min([info["max_movies"] if "max_movies" in info else 15 for info in infolst]
60+
self.max_movies = min([info["max_movies"] if "max_movies" in info else 15 for info in infolst])
6161
for ctr in slaves:
6262
ctr._udpclient = self.udpclient
6363

0 commit comments

Comments
 (0)