Skip to content

Commit b9cac5e

Browse files
authored
run black for nipype/interfaces/spm/preprocess.py
1 parent 50b89c4 commit b9cac5e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

nipype/interfaces/spm/preprocess.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1491,7 +1491,10 @@ def _list_outputs(self):
14911491
filelist = ensure_list(self.inputs.apply_to_files)
14921492
for f in filelist:
14931493
if isinstance(f, list):
1494-
run = [fname_presuffix(in_f, prefix=self.inputs.out_prefix) for in_f in f]
1494+
run = [
1495+
fname_presuffix(in_f, prefix=self.inputs.out_prefix)
1496+
for in_f in f
1497+
]
14951498
else:
14961499
run = [fname_presuffix(f, prefix=self.inputs.out_prefix)]
14971500
outputs["normalized_files"].extend(run)

0 commit comments

Comments
 (0)