Skip to content

Commit

Permalink
Run black
Browse files Browse the repository at this point in the history
  • Loading branch information
carlthome committed Aug 15, 2024
1 parent b398fa6 commit 45a55b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()


Expand All @@ -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()


Expand Down Expand Up @@ -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()


Expand All @@ -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()


Expand Down

0 comments on commit 45a55b4

Please sign in to comment.