Skip to content

Commit 800c535

Browse files
committed
Merge pull request #511 from akeshavan/nipy_realign
fix: change type of loops,speedup and between loops so its compatible wi...
2 parents 44d8c42 + 0a23038 commit 800c535

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/nipy/preprocess.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ def _run_interface(self, runtime):
156156
time_interp=self.inputs.time_interp,
157157
start=self.inputs.start)
158158

159-
R.estimate(loops=self.inputs.loops,
160-
between_loops=self.inputs.between_loops,
161-
speedup=self.inputs.speedup)
159+
R.estimate(loops=list(self.inputs.loops),
160+
between_loops=list(self.inputs.between_loops),
161+
speedup=list(self.inputs.speedup))
162162

163163
corr_run = R.resample()
164164
self._out_file_path = []

0 commit comments

Comments
 (0)