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 d7cdd64Copy full SHA for d7cdd64
nipype/interfaces/fsl/utils.py
@@ -484,7 +484,7 @@ class ExtractROI(FSLCommand):
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))
+ str(x) for sublist in value for x in sublist
488
)
489
return super()._format_arg(name, spec, value)
490
0 commit comments