diff --git a/fsl/data/cifti.py b/fsl/data/cifti.py index a1521d56f3c2fe798a8b8c5fc2830cc7c966c155..ecd193eb9854b2c3198954852f8f9cfc76706bf0 100644 --- a/fsl/data/cifti.py +++ b/fsl/data/cifti.py @@ -343,7 +343,7 @@ class BrainStructure(object): :param primary: Name of the brain structure (e.g. cortex, thalamus) :param secondary: Further specification of which part of the brain structure is described (e.g. 'white' or - 'pial' for the cortex) + 'pial' for the cortex) :param hemisphere: which hemisphere is the brain structure in ('left', 'right', or 'both') :param geometry: does the parent object describe the 'volume' or the 'surface' """ @@ -490,4 +490,3 @@ def load(filename, mask_values=(0, np.nan), writable=False) -> Union[DenseCifti, if writable: raise ValueError("Can not open NIFTI file in writable mode") return Cifti.from_image(vol_img, mask_values) - diff --git a/fsl/wrappers/wrapperutils.py b/fsl/wrappers/wrapperutils.py index ff6fcc06d5c66d2a18cfeb50986fd0f560e41384..8739a1a34fea38b025a956326e23d11471f343e5 100644 --- a/fsl/wrappers/wrapperutils.py +++ b/fsl/wrappers/wrapperutils.py @@ -168,6 +168,7 @@ def genxwrapper(func, runner): The following keyword arguments will be intercepted by the wrapper function, and will *not* be passed to ``func``: + - ``stdout``: Passed to ``runner``. Defaults to ``True``. - ``stderr``: Passed to ``runner``. Defaults to ``True``. - ``exitcode``: Passed to ``runner``. Defaults to ``False``.