Skip to content

Commit

Permalink
Shorten length of docstrings returns
Browse files Browse the repository at this point in the history
  • Loading branch information
engrosamaali91 committed Oct 12, 2023
1 parent e67eb2d commit d3d47d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions brainprint/surfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def create_aseg_surfaces(subject_dir: Path, destination: Path) -> Dict[str, Path
Returns
-------
Dict[str, Path]
A dictionary mapping label names to the corresponding Path objects of created surfaces.
Dictionary of label names mapped to corresponding surface Path objects.
"""
# Define aseg labels

Expand Down Expand Up @@ -159,7 +159,7 @@ def create_cortical_surfaces(subject_dir: Path, destination: Path) -> Dict[str,
Returns
-------
Dict[str, Path]
A dictionary mapping label names to the corresponding Path objects of created surfaces.
Dictionary mapping label names to associated surface Paths.
"""
cortical_labels = {
"lh-white-2d": "lh.white",
Expand Down Expand Up @@ -194,7 +194,7 @@ def create_surfaces(
Returns
-------
Dict[str, Path]
A dictionary mapping label names to the corresponding Path objects of created surfaces.
Dict mapping label names to the corresponding Path objects of created surfaces.
"""
surfaces = create_aseg_surfaces(subject_dir, destination)
if not skip_cortex:
Expand Down

0 comments on commit d3d47d7

Please sign in to comment.