Skip to content

Commit fcb0e0d

Browse files
author
schmide
committed
climada.util.plot: remove trailing semi-colons
1 parent 8b47f16 commit fcb0e0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

climada/util/plot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,9 +563,9 @@ def multibar_plot(ax, data, colors=None, total_width=0.8, single_width=1, legend
563563

564564
if ticklabels:
565565
if invert_axis:
566-
plt.setp(ax, yticks=range(len(data)), yticklabels=ticklabels);
566+
plt.setp(ax, yticks=range(len(data)), yticklabels=ticklabels)
567567
else:
568-
plt.setp(ax, xticks=range(len(data)), xticklabels=ticklabels);
568+
plt.setp(ax, xticks=range(len(data)), xticklabels=ticklabels)
569569

570570
# Draw legend if we need
571571
if legend:

0 commit comments

Comments
 (0)