Skip to content

Commit bd1ab8a

Browse files
committed
STY: Whitespace, line length
1 parent 5005da2 commit bd1ab8a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

nipype/interfaces/io.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -835,16 +835,18 @@ class S3DataGrabber(LibraryBaseInterface, IOBase):
835835
>>> s3grab = S3DataGrabber(infields=['subj_id'], outfields=["func", "anat"])
836836
>>> s3grab.inputs.bucket = 'openneuro'
837837
>>> s3grab.inputs.sort_filelist = True
838-
>>> s3grab.inputs.template = '*'
838+
>>> s3grab.inputs.template = '*'
839839
>>> s3grab.inputs.anon = True
840-
>>> s3grab.inputs.bucket_path = 'ds000101/ds000101_R2.0.0/uncompressed/'
841-
>>> s3grab.inputs.local_directory = '/tmp'
842-
>>> s3grab.inputs.field_template = {'anat': '%s/anat/%s_T1w.nii.gz', 'func': '%s/func/%s_task-simon_run-1_bold.nii.gz'}
843-
>>> s3grab.inputs.template_args = {'anat': [['subj_id', 'subj_id']], 'func': [['subj_id', 'subj_id']]}
840+
>>> s3grab.inputs.bucket_path = 'ds000101/ds000101_R2.0.0/uncompressed/'
841+
>>> s3grab.inputs.local_directory = '/tmp'
842+
>>> s3grab.inputs.field_template = {'anat': '%s/anat/%s_T1w.nii.gz',
843+
... 'func': '%s/func/%s_task-simon_run-1_bold.nii.gz'}
844+
>>> s3grab.inputs.template_args = {'anat': [['subj_id', 'subj_id']],
845+
... 'func': [['subj_id', 'subj_id']]}
844846
>>> s3grab.inputs.subj_id = 'sub-01'
845847
>>> s3grab.run() # doctest: +SKIP
846848
"""
847-
849+
848850
input_spec = S3DataGrabberInputSpec
849851
output_spec = DynamicTraitedSpec
850852
_always_run = True

0 commit comments

Comments
 (0)