Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1614 Cycloneplotter METplotlibDeprecationWarning observed in Matplotlib versions above 3.2 #1621

Merged
merged 6 commits into from
Jun 6, 2022
2 changes: 1 addition & 1 deletion metplus/wrappers/cyclone_plotter_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def create_plot(self):

# Dummy point to add the additional label explaining the labelling of the first
# point in the storm track
plt.scatter(0, 0, zorder=2, marker=None, c='',
plt.scatter(0, 0, zorder=2, marker=None, c=[],
label="Date (dd/hhz) is the first " +
"time storm was able to be tracked in model")

Expand Down