Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Remi-Gau committed Jun 20, 2023
1 parent 6f71710 commit dbac40f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nilearn/_utils/data_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ def write_fake_fmri_data_and_design(shapes,
data = rand_gen.randn(*shape)
data[1:-1, 1:-1, 1:-1] += 100
Nifti1Image(data, affine).to_filename(fmri_files[-1])
design_files.append('dmtx_{i:d}.csv')
design_files.append(f'dmtx_{i:d}.csv')
pd.DataFrame(rand_gen.randn(shape[3], rk),
columns=['', '', '']).to_csv(design_files[-1])
Nifti1Image((rand_gen.rand(*shape[:3]) > .5).astype(np.int8),
Expand Down

0 comments on commit dbac40f

Please sign in to comment.