Skip to content

Commit f6b2fa6

Browse files
committed
fix ruff linit
1 parent 9ffdd38 commit f6b2fa6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/plotting/test_plotting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,9 +553,9 @@ def test_plot_data(self, icohplist_nacl, icobilist_nacl, icooplist_nacl):
553553
ax_icoop_c = icoop_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
554554
ax_icohp_c = icohp_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
555555
ax_icobi_c = icobi_plotter.get_plot(xlim=(0, 4), ylim=(0, 6), color_interactions=True).gca()
556-
handles_icoop, labels_icoop = ax_icoop_c.get_legend_handles_labels()
557-
handles_icohp, labels_icohp = ax_icohp_c.get_legend_handles_labels()
558-
handles_icobi, labels_icobi = ax_icobi_c.get_legend_handles_labels()
556+
_handles_icoop, labels_icoop = ax_icoop_c.get_legend_handles_labels()
557+
_handles_icohp, labels_icohp = ax_icohp_c.get_legend_handles_labels()
558+
_handles_icobi, labels_icobi = ax_icobi_c.get_legend_handles_labels()
559559
assert len(set(labels_icoop)) == 3
560560
assert len(set(labels_icobi)) == 3
561561
assert len(set(labels_icohp)) == 3

0 commit comments

Comments
 (0)