aboutsummaryrefslogtreecommitdiff
path: root/pixelcore/PixelStrip.py
diff options
context:
space:
mode:
Diffstat (limited to 'pixelcore/PixelStrip.py')
-rw-r--r--pixelcore/PixelStrip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pixelcore/PixelStrip.py b/pixelcore/PixelStrip.py
index 45d2c8b..c82a87a 100644
--- a/pixelcore/PixelStrip.py
+++ b/pixelcore/PixelStrip.py
@@ -11,7 +11,7 @@ class PixelStrip:
self.argDict = layoutEngine.getStripArgs()
def initStrip(self, layoutEngine):
pixelLocations = layoutEngine.getPixelLocations()
- self.pixels = [Pixel(l, (0,0,0)) for l in pixelLocations]
+ self.pixels = [Pixel(l) for l in pixelLocations]
def __iter__(self):
return self.pixels.__iter__()
def render(self, surface):