Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7b76bc

Browse files
committed
Merge branch 'v2.0.x'
2 parents cb3c6f3 + c5ce72a commit a7b76bc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3008,7 +3008,7 @@ def xywhere(xs, ys, mask):
30083008
caplines.extend(self.plot(xup, yup, 'k_', **plot_kw))
30093009

30103010
if not barsabove and plot_line:
3011-
l0, = self.plot(x, y, fmt, **kwargs)
3011+
l0, = self.plot(x, y, fmt, label='_nolegend_', **kwargs)
30123012

30133013
if ecolor is None:
30143014
if l0 is None and 'color' in self._get_lines._prop_keys:

lib/matplotlib/backends/backend_webagg_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import warnings
2323

2424
import numpy as np
25+
import tornado
2526

2627
from matplotlib.backends import backend_agg
2728
from matplotlib.figure import Figure

0 commit comments

Comments
 (0)