Skip to content

Commit 315627f

Browse files
committed
Fix issue #190 by removing unicode characters in docstrings
1 parent ff8dfa4 commit 315627f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mindboggle/features/fundi.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ def extract_fundi(folds, curv_file, depth_file, min_separation=10,
3232
3333
To find the endpoints, the find_outer_endpoints function propagates
3434
multiple tracks from seed vertices at median depth in the fold through
35-
concentric rings toward the folds edge, selecting maximal values within
35+
concentric rings toward the fold's edge, selecting maximal values within
3636
each ring, and terminating at candidate endpoints. The final endpoints
3737
are those candidates at the end of tracks that have a high median value,
3838
with the higher value chosen if two candidate endpoints are within
3939
(a default of) 10 edges from each other (otherwise, the resulting fundi
40-
can have spurious branching at the folds edge).
40+
can have spurious branching at the fold's edge).
4141
4242
The connect_points_erosion function connects the deepest fold vertices
4343
to the endpoints with a skeleton of 1-vertex-thick curves by erosion.
@@ -254,4 +254,4 @@ def extract_fundi(folds, curv_file, depth_file, min_separation=10,
254254
# ============================================================================
255255
if __name__ == "__main__":
256256
import doctest
257-
doctest.testmod(verbose=True) # py.test --doctest-modules
257+
doctest.testmod(verbose=True) # py.test --doctest-modules

0 commit comments

Comments
 (0)