File tree
Expand file treeCollapse file tree1 file changed
+1
-3
lines changed Expand file treeCollapse file tree1 file changed
+1
-3
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -483,9 +483,7 @@ class ExtractROI(FSLCommand):
|
483 | 483 |
|
484 | 484 | def _format_arg(self, name, spec, value):
|
485 | 485 | if name == "crop_list":
|
486 |
| -return " ".join( |
487 |
| -map(str, (x for sublist in map(list, value) for x in sublist)) |
488 |
| -) |
| 486 | +return " ".join(str(x) for sublist in value for x in sublist) |
489 | 487 | return super()._format_arg(name, spec, value)
|
490 | 488 |
|
491 | 489 | def _list_outputs(self):
|
|
You can’t perform that action at this time.
0 commit comments