Skip to content

Commit

Permalink
Remove ; from plot title
Browse files Browse the repository at this point in the history
  • Loading branch information
Edoardo Chidichimo committed Apr 27, 2024
1 parent f5e553f commit f68c7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyperit/hyperit.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def __plot_it(self) -> None:
plt.title(f'{title} Epoch {epoch+1}', pad=20)
else:
if band_description:
plt.title(f'{title}; Frequency Band {band_description}', pad=20)
plt.title(f'{title} Frequency Band {band_description}', pad=20)
else:
plt.title(title, pad=20)

Expand Down

0 comments on commit f68c7fc

Please sign in to comment.