aboutsummaryrefslogtreecommitdiff
path: root/layouts/LineLayout.py
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/LineLayout.py')
-rw-r--r--layouts/LineLayout.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/LineLayout.py b/layouts/LineLayout.py
index 3a8b747..34f5e36 100644
--- a/layouts/LineLayout.py
+++ b/layouts/LineLayout.py
@@ -1,5 +1,5 @@
-from operationscore.LayoutEngine import *
+from operationscore.PixelAssembler import *
#Simple layout class that simply makes a line of LEDs
-class LineLayout(LayoutEngine):
+class LineLayout(PixelAssembler):
def layoutFunc(self, lastLocation):
return (lastLocation[0]+self.argDict['spacing'], lastLocation[1])