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 8b14294 commit 6c09ea2Copy full SHA for 6c09ea2
nipype/algorithms/modelgen.py
@@ -621,8 +621,8 @@ def _concatenate_info(self, infolist):
621
)
622
623
if hasattr(info, "amplitudes") and info.amplitudes:
624
- for j, _ in enumerate(info.amplitudes):
625
- infoout.amplitudes[j].extend(info.amplitudes[j])
+ for j, val in enumerate(info.amplitudes):
+ infoout.amplitudes[j].extend(val)
626
627
if hasattr(info, "pmod") and info.pmod:
628
for j, val in enumerate(info.pmod):
0 commit comments