summaryrefslogtreecommitdiff
path: root/src/python/gudhi/off_reader.pyx
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2020-01-09 18:03:39 +0100
committerMarc Glisse <marc.glisse@inria.fr>2020-01-09 18:03:39 +0100
commit18c98020adea4a7d0c53fe4e76c92bab23e7ad76 (patch)
tree30cef4d252137a61411c9e546b8ca423d1d8c01d /src/python/gudhi/off_reader.pyx
parentbcc49c54943e20b117a3a83579d94f6c1b0efd04 (diff)
Spell out types as in PEP 484
but don't actually use annotations. A quick try with sphinx-autodoc-typehints failed, I didn't investigate much, it can wait.
Diffstat (limited to 'src/python/gudhi/off_reader.pyx')
-rw-r--r--src/python/gudhi/off_reader.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/off_reader.pyx b/src/python/gudhi/off_reader.pyx
index e45356be..3a31eba6 100644
--- a/src/python/gudhi/off_reader.pyx
+++ b/src/python/gudhi/off_reader.pyx
@@ -26,7 +26,7 @@ def read_off(off_file=''):
:type off_file: string
:returns: The point set.
- :rtype: list(list(float))
+ :rtype: List[List[float]]
"""
if off_file:
if os.path.isfile(off_file):