summaryrefslogtreecommitdiff
path: root/src/python/gudhi/simplex_tree.pyx
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-02-14 11:29:49 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-02-14 11:29:49 +0100
commitc7303733b28d3bc429d4bdfd030409e07430599d (patch)
tree5ecb519459e81355187d2580e549f8b418fde34b /src/python/gudhi/simplex_tree.pyx
parent1ffe721b41bfa73d87af443b29498f80f4479770 (diff)
Rewrite test as #463 is merged. Rephrase constructor documentation
Diffstat (limited to 'src/python/gudhi/simplex_tree.pyx')
-rw-r--r--src/python/gudhi/simplex_tree.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx
index 6701d98d..a2b8719a 100644
--- a/src/python/gudhi/simplex_tree.pyx
+++ b/src/python/gudhi/simplex_tree.pyx
@@ -41,9 +41,9 @@ cdef class SimplexTree:
def __init__(self, other = None):
"""SimplexTree constructor.
- :param other: If `other` is a `None` (default value), an empty `SimplexTree` is created.
+ :param other: If `other` is `None` (default value), an empty `SimplexTree` is created.
If `other` is a `SimplexTree`, the `SimplexTree` is constructed from a deep copy of `other`.
- :type other: SimplexTree
+ :type other: SimplexTree (Optional)
:returns: An empty or a copy simplex tree.
:rtype: SimplexTree