summaryrefslogtreecommitdiff
path: root/src/python/test/test_alpha_complex.py
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/test/test_alpha_complex.py
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/test/test_alpha_complex.py')
-rwxr-xr-xsrc/python/test/test_alpha_complex.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/python/test/test_alpha_complex.py b/src/python/test/test_alpha_complex.py
index 9b27fff2..712a50b6 100755
--- a/src/python/test/test_alpha_complex.py
+++ b/src/python/test/test_alpha_complex.py
@@ -1,9 +1,3 @@
-from gudhi import AlphaComplex, SimplexTree
-import math
-import numpy as np
-import itertools
-import pytest
-
""" 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
@@ -14,6 +8,12 @@ import pytest
- YYYY/MM Author: Description of the modification
"""
+from gudhi import AlphaComplex, SimplexTree
+import math
+import numpy as np
+import itertools
+import pytest
+
__author__ = "Vincent Rouvreau"
__copyright__ = "Copyright (C) 2016 Inria"
__license__ = "MIT"