Skip to content

Commit

Permalink
Merge pull request #3704 from mgxd/fix/np-save
Browse files Browse the repository at this point in the history
FIX: Missed np.savetxt bstring
  • Loading branch information
effigies authored Dec 17, 2024
2 parents 37546c7 + 292e35c commit 8b78870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nipype/algorithms/confounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _run_interface(self, runtime):

if self.inputs.save_nstd:
out_file = self._gen_fname("dvars_nstd", ext="tsv")
np.savetxt(out_file, dvars[1], fmt=b"%0.6f")
np.savetxt(out_file, dvars[1], fmt="%0.6f")
self._results["out_nstd"] = out_file

if self.inputs.save_plot:
Expand Down

0 comments on commit 8b78870

Please sign in to comment.