summaryrefslogtreecommitdiff
path: root/src/python/gudhi/off_reader.pyx
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-01-13 17:37:06 +0100
committerGitHub <noreply@github.com>2020-01-13 17:37:06 +0100
commitc5ab277ebe1a0ce032567d4ca47e487f356705f3 (patch)
treedbc2fe07ab896fa2759543aecf1903fefe6cba9b /src/python/gudhi/off_reader.pyx
parentff0a45b711288e788088a1db810e50178086f2d8 (diff)
parent8f5cb043bf78b8f008b67e292668543a899e6795 (diff)
Merge pull request #197 from VincentRouvreau/python_import_reorder
Fix #144 : Reorder import and docstrings. Modify test_representations
Diffstat (limited to 'src/python/gudhi/off_reader.pyx')
-rw-r--r--src/python/gudhi/off_reader.pyx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/python/gudhi/off_reader.pyx b/src/python/gudhi/off_reader.pyx
index ee369976..58f05db8 100644
--- a/src/python/gudhi/off_reader.pyx
+++ b/src/python/gudhi/off_reader.pyx
@@ -1,8 +1,3 @@
-from cython cimport numeric
-from libcpp.vector cimport vector
-from libcpp.string cimport string
-import os
-
# This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
# See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
# Author(s): Vincent Rouvreau
@@ -12,6 +7,11 @@ import os
# Modification(s):
# - YYYY/MM Author: Description of the modification
+from cython cimport numeric
+from libcpp.vector cimport vector
+from libcpp.string cimport string
+import os
+
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
__license__ = "MIT"