From f68c7fc53a494f7045a2ea9c1d1129631c90483d Mon Sep 17 00:00:00 2001 From: Edoardo Chidichimo Date: Sat, 27 Apr 2024 16:26:22 +0100 Subject: [PATCH] Remove ; from plot title --- hyperit/hyperit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperit/hyperit.py b/hyperit/hyperit.py index 4038cfb..11a4b04 100644 --- a/hyperit/hyperit.py +++ b/hyperit/hyperit.py @@ -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)