diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-16 18:25:14 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-16 18:25:14 +0100 |
commit | 8d152f90a4bea294c3f5efd4d6115d297c24e0e3 (patch) | |
tree | 629fbbbaee152abc12aa1682a6042e4e9a817709 /examples/lisp-esque | |
parent | implemenet _negative and _invert (diff) | |
download | blueshift-8d152f90a4bea294c3f5efd4d6115d297c24e0e3.tar.gz blueshift-8d152f90a4bea294c3f5efd4d6115d297c24e0e3.tar.bz2 blueshift-8d152f90a4bea294c3f5efd4d6115d297c24e0e3.tar.xz |
cie_invert takes only one argument
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples/lisp-esque')
-rw-r--r-- | examples/lisp-esque | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/lisp-esque b/examples/lisp-esque index 61e1586..0ec3551 100644 --- a/examples/lisp-esque +++ b/examples/lisp-esque @@ -496,7 +496,7 @@ class CIEInvert: def __init__(self): self.monitors = [(False, False, False, False, False, False)] def __call__(self, monitor, alpha): - cie_invert(*(self.monitors[monitor][3 if alpha == 0 else 0:][:3])) + cie_invert(self.monitors[monitor][3 if alpha == 0 else 0]) def _invert(mods, args): ''' |