Skip to content

Commit e219b49

Browse files
rciricoesteban
authored andcommitted
(sty) conform to flake8 specs
1 parent 1d00ba8 commit e219b49

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

fmriprep/interfaces/confounds.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,12 @@ class ICAConfounds(SimpleInterface):
117117
output_spec = ICAConfoundsOutputSpec
118118

119119
def _run_interface(self, runtime):
120-
(aroma_confounds, motion_ics_out, melodic_mix_out, aroma_metadata
121-
) = _get_ica_confounds(self.inputs.in_directory,
122-
self.inputs.skip_vols,
123-
newpath=runtime.cwd)
120+
(aroma_confounds,
121+
motion_ics_out,
122+
melodic_mix_out,
123+
aroma_metadata) = _get_ica_confounds(self.inputs.in_directory,
124+
self.inputs.skip_vols,
125+
newpath=runtime.cwd)
124126

125127
if self.inputs.err_on_aroma_warn and aroma_confounds is None:
126128
raise RuntimeError('ICA-AROMA failed')

fmriprep/workflows/bold/confounds.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,8 +692,9 @@ def _getusans_func(image, thresh):
692692

693693
ica_aroma_metadata_fmt = pe.Node(
694694
TSV2JSON(index_column='IC', output=None, enforce_case=True,
695-
additional_metadata={'Method':
696-
{'Name': 'ICA-AROMA', 'Version': '0.3-beta'}}),
695+
additional_metadata={
696+
'Method': {'Name': 'ICA-AROMA', 'Version': '0.3-beta'}
697+
}),
697698
name='ica_aroma_metadata_fmt')
698699

699700
ds_report_ica_aroma = pe.Node(

0 commit comments

Comments
 (0)