summaryrefslogtreecommitdiff
path: root/src/python/gudhi/cubical_complex.pyx
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2019-11-16 06:34:54 +0100
committerMarc Glisse <marc.glisse@inria.fr>2019-11-16 06:34:54 +0100
commitc3414741af6ef98703ba9414803aff5a2d08777d (patch)
tree7a1b236ef6b11e8a687eaabb2c1f08dd3523a76f /src/python/gudhi/cubical_complex.pyx
parentd091cf5369c2eba0bb301942842d56606a45af76 (diff)
More 'is' to '=='
Diffstat (limited to 'src/python/gudhi/cubical_complex.pyx')
-rw-r--r--src/python/gudhi/cubical_complex.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/cubical_complex.pyx b/src/python/gudhi/cubical_complex.pyx
index 0dc133d1..579c942b 100644
--- a/src/python/gudhi/cubical_complex.pyx
+++ b/src/python/gudhi/cubical_complex.pyx
@@ -66,9 +66,9 @@ cdef class CubicalComplex:
# The real cython constructor
def __cinit__(self, dimensions=None, top_dimensional_cells=None,
perseus_file=''):
- if (dimensions is not None) and (top_dimensional_cells is not None) and (perseus_file is ''):
+ if (dimensions is not None) and (top_dimensional_cells is not None) and (perseus_file == ''):
self.thisptr = new Bitmap_cubical_complex_base_interface(dimensions, top_dimensional_cells)
- elif (dimensions is None) and (top_dimensional_cells is None) and (perseus_file is not ''):
+ elif (dimensions is None) and (top_dimensional_cells is None) and (perseus_file != ''):
if os.path.isfile(perseus_file):
self.thisptr = new Bitmap_cubical_complex_base_interface(str.encode(perseus_file))
else: