summaryrefslogtreecommitdiff
path: root/src/python/gudhi/alpha_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/alpha_complex.pyx
parentd091cf5369c2eba0bb301942842d56606a45af76 (diff)
More 'is' to '=='
Diffstat (limited to 'src/python/gudhi/alpha_complex.pyx')
-rw-r--r--src/python/gudhi/alpha_complex.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/alpha_complex.pyx b/src/python/gudhi/alpha_complex.pyx
index 6d6309db..a85c47c8 100644
--- a/src/python/gudhi/alpha_complex.pyx
+++ b/src/python/gudhi/alpha_complex.pyx
@@ -68,7 +68,7 @@ cdef class AlphaComplex:
# The real cython constructor
def __cinit__(self, points=None, off_file=''):
- if off_file is not '':
+ if off_file:
if os.path.isfile(off_file):
self.thisptr = new Alpha_complex_interface(str.encode(off_file), True)
else: