summaryrefslogtreecommitdiff
path: root/python/src/lattice.pxi
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/lattice.pxi')
-rw-r--r--python/src/lattice.pxi2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/lattice.pxi b/python/src/lattice.pxi
index c6b29e8b..08405188 100644
--- a/python/src/lattice.pxi
+++ b/python/src/lattice.pxi
@@ -3,7 +3,7 @@ cimport lattice
cdef class Lattice:
cdef lattice.Lattice* lattice
- def __init__(self, inp):
+ def __cinit__(self, inp):
if isinstance(inp, tuple):
self.lattice = new lattice.Lattice(len(inp))
for i, arcs in enumerate(inp):