We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1be9a67 commit 5ce526fCopy full SHA for 5ce526f
nipype/interfaces/fsl/utils.py
@@ -483,9 +483,7 @@ class ExtractROI(FSLCommand):
483
484
def _format_arg(self, name, spec, value):
485
if name == "crop_list":
486
- return " ".join(
487
- map(str, (x for sublist in map(list, value) for x in sublist))
488
- )
+ return " ".join(str(x) for sublist in value for x in sublist)
489
return super()._format_arg(name, spec, value)
490
491
def _list_outputs(self):
0 commit comments