Skip to content

Commit e6940aa

Browse files
authored
Merge pull request #93 from rea1991/fix/step4-file-names
Correct bug in file name inside _plot_stripes_helper
2 parents 5559ec8 + e27a918 commit e6940aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stripepy/stripepy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def _plot_stripes_helper(args):
742742
fig, _ = plot.plot(
743743
result, resolution, "matrix_with_stripes", start=start, end=end, matrix=matrix, relative_change_threshold=cutoff
744744
)
745-
dest = output_folder / f"stripes_{cutoff:.2g}.jpg"
745+
dest = output_folder / f"stripes_{cutoff:.2f}.jpg"
746746
fig.savefig(dest, dpi=256)
747747
plt.close(fig)
748748

0 commit comments

Comments
 (0)