Skip to content

Commit 5ae3428

Browse files
committed
Applied black formatting.
1 parent 47fe00b commit 5ae3428

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

nipype/interfaces/fsl/preprocess.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class BETInputSpec(FSLCommandInputSpec):
3535
argstr="%s",
3636
position=0,
3737
mandatory=True,
38+
copyfile=False,
3839
)
3940
out_file = File(
4041
desc="name of output skull stripped image",
@@ -1309,10 +1310,7 @@ def _list_outputs(self):
13091310

13101311
if key == "out_intensitymap_file" and isdefined(outputs[key]):
13111312
basename = FNIRT.intensitymap_file_basename(outputs[key])
1312-
outputs[key] = [
1313-
outputs[key],
1314-
"%s.txt" % basename,
1315-
]
1313+
outputs[key] = [outputs[key], "%s.txt" % basename]
13161314
return outputs
13171315

13181316
def _format_arg(self, name, spec, value):

0 commit comments

Comments
 (0)