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 d6b0845 commit e3478caCopy full SHA for e3478ca
nipype/interfaces/fsl/epi.py
@@ -378,7 +378,7 @@ def _parse_inputs(self, skip=None):
378
# If not defined, assume index are the first N entries in the
379
# parameters file, for N input images.
380
if not isdefined(self.inputs.in_index):
381
- self.inputs.in_index = range(1, len(self.inputs.in_files) + 1)
+ self.inputs.in_index = list(range(1, len(self.inputs.in_files) + 1))
382
383
return super(ApplyTOPUP, self)._parse_inputs(skip=skip)
384
0 commit comments