Skip to content

Commit bb1d131

Browse files
mgxdeffigies
andauthored
Apply suggestions from code review
Co-authored-by: Chris Markiewicz <[email protected]>
1 parent 30224a9 commit bb1d131

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

smriprep/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
try:
2828
from ._version import __version__
29-
except ImportError:
29+
except ImportError: # pragma: no cover
3030
__version__ = "0+unknown"
3131

3232
__copyright__ = "Copyright 2019, Center for Reproducible Neuroscience, Stanford University"

smriprep/cli/run.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,10 @@ def get_parser():
215215
help="disable sub-millimeter (hires) reconstruction",
216216
)
217217
g_surfs.add_argument(
218-
"--msm-sulc",
219-
"--msmsulc",
220-
action="store_true",
218+
"--no-msm",
219+
action="store_false",
221220
dest="msm_sulc",
222-
help="Enable Multimodal Surface Matching surface registration."
221+
help="Disable Multimodal Surface Matching surface registration."
223222
)
224223
g_surfs_xor = g_surfs.add_mutually_exclusive_group()
225224

0 commit comments

Comments
 (0)