diff options
author | Jakob Stendahl <jakob.stendahl@outlook.com> | 2018-11-29 23:53:19 +0100 |
---|---|---|
committer | Jakob Stendahl <jakob.stendahl@outlook.com> | 2018-11-29 23:53:19 +0100 |
commit | 8eae54ea9e641e36dcdbe2698243039958d9cd05 (patch) | |
tree | ba38099a10764884a0a7247a98dc92314b715f6a | |
parent | 96625879bbb27b758cf3ea5038b7c5f99bdca003 (diff) | |
download | Luxcena-Neo-8eae54ea9e641e36dcdbe2698243039958d9cd05.tar.gz Luxcena-Neo-8eae54ea9e641e36dcdbe2698243039958d9cd05.zip |
:hammer: Fix syntax
-rw-r--r-- | src/compileAndRun/pythonSupportFiles/LuxcenaNeo/Strip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/Strip.py b/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/Strip.py index 9d45457..a32837a 100644 --- a/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/Strip.py +++ b/src/compileAndRun/pythonSupportFiles/LuxcenaNeo/Strip.py @@ -35,7 +35,7 @@ class Strip: # Setup matrix try: - pixelMatrix = new Matrix(stripConf["matrix"], self.segments) + pixelMatrix = Matrix(stripConf["matrix"], self.segments) except: print("Something went wrong while setting up your self-defined matrix.") |