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 7774e3f commit cfcbc6dCopy full SHA for cfcbc6d
nipype/interfaces/fsl/model.py
@@ -826,7 +826,10 @@ def _get_pe_files(self, cwd):
826
for line in fp:
827
if line.startswith("/NumWaves"):
828
numpes = int(line.split()[-1])
829
- files = [self._gen_fname(f"pe{i + 1}.nii", cwd=cwd) for i in range(numpes)]
+ files = [
830
+ self._gen_fname(f"pe{i + 1}.nii", cwd=cwd)
831
+ for i in range(numpes)
832
+ ]
833
break
834
return files
835
0 commit comments