Skip to content

Commit 9ea70c4

Browse files
committed
Clean up docstring.
1 parent 965a47b commit 9ea70c4

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/smriprep/workflows/outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def init_ds_mask_wf(
325325
*,
326326
bids_root: str,
327327
output_dir: str,
328-
mask_type: ty.Literal['brain', 'roi', 'ribbon', 'cortex'],
328+
mask_type: ty.Literal['brain', 'roi', 'ribbon'],
329329
extra_entities: dict | None = None,
330330
name='ds_mask_wf',
331331
):

src/smriprep/workflows/surfaces.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,7 +1160,7 @@ def init_cortex_masks_wf(
11601160
*,
11611161
name: str = 'cortex_masks_wf',
11621162
):
1163-
"""Create a cortical surface mask from a surface file.
1163+
"""Create cortical surface masks from surface files.
11641164
11651165
Workflow Graph
11661166
.. workflow::
@@ -1172,15 +1172,17 @@ def init_cortex_masks_wf(
11721172
11731173
Inputs
11741174
------
1175-
midthickness : list of str
1175+
midthickness : len-2 list of str
11761176
Each hemisphere's FreeSurfer midthickness surface file in GIFTI format
1177-
thickness : list of str
1177+
thickness : len-2 list of str
11781178
Each hemisphere's FreeSurfer thickness file in GIFTI format
11791179
11801180
Outputs
11811181
-------
1182-
cortex_masks : list of str
1182+
cortex_masks : len-2 list of str
11831183
Cortical surface mask in GIFTI format for each hemisphere
1184+
source_files : len-2 list of lists of str
1185+
Each hemisphere's source files, which are used to create the mask
11841186
"""
11851187
DEFAULT_MEMORY_MIN_GB = 0.01
11861188

0 commit comments

Comments
 (0)