From 82997da02457c5f86ed48d05a3da99ce0dcbf051 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 29 Jan 2021 15:46:06 +0000 Subject: [PATCH] DOC: Address sphinx warnings --- fsl/data/cifti.py | 3 +-- fsl/wrappers/wrapperutils.py | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fsl/data/cifti.py b/fsl/data/cifti.py index a1521d56f..ecd193eb9 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 ff6fcc06d..8739a1a34 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``. -- GitLab