summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-02-11 17:05:08 +0100
committerGitHub <noreply@github.com>2020-02-11 17:05:08 +0100
commit3253abd27129595f7fcd2be4c2285a93aea98690 (patch)
tree1c25665fb7545a432e13caddbd7ddd8a5b1bec80
parentef2c5b53e88321f07ad93496f00dde16dc20f018 (diff)
Update src/python/gudhi/simplex_tree.pyx
Co-Authored-By: Marc Glisse <marc.glisse@inria.fr>
-rw-r--r--src/python/gudhi/simplex_tree.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index 22978b6e..308b3d2d 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -219,7 +219,7 @@ cdef class SimplexTree:
cdef vector[Simplex_tree_simplex_handle].const_iterator end = self.get_ptr().get_filtration_iterator_end()
while it != end:
- yield(self.get_ptr().get_simplex_and_filtration(dereference(it)))
+ yield self.get_ptr().get_simplex_and_filtration(dereference(it))
preincrement(it)
def get_skeleton(self, dimension):