From 45a55b46df32d7f02b5db4ff28d42cfdbc9cd340 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20Thom=C3=A9?= Date: Thu, 15 Aug 2024 16:43:17 +0530 Subject: [PATCH] Run black --- tests/test_display.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_display.py b/tests/test_display.py index c87cdcd4..943a6674 100644 --- a/tests/test_display.py +++ b/tests/test_display.py @@ -151,7 +151,7 @@ def test_display_labeled_intervals_compare_noextend(): est_int, est_labels, extend_labels=False, alpha=0.5, label="Estimate" ) - plt.legend(loc='upper right') + plt.legend(loc="upper right") return plt.gcf() @@ -178,7 +178,7 @@ def test_display_labeled_intervals_compare_common(): est_int, est_labels, label_set=label_set, alpha=0.5, label="Estimate" ) - plt.legend(loc='upper right') + plt.legend(loc="upper right") return plt.gcf() @@ -344,7 +344,7 @@ def test_display_piano_roll(): est_t, est_p, label="Estimate", alpha=0.5, facecolor="r" ) - plt.legend(loc='upper right') + plt.legend(loc="upper right") return plt.gcf() @@ -367,7 +367,7 @@ def test_display_piano_roll_midi(): est_t, midi=est_midi, label="Estimate", alpha=0.5, facecolor="r" ) - plt.legend(loc='upper right') + plt.legend(loc="upper right") return plt.gcf()