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

Skip to content

Commit fd804e0

Browse files
committed
STY: Remove unused variables and import.
1 parent 4a882dc commit fd804e0

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/matplotlib/axes.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
import matplotlib.collections as mcoll
1717
import matplotlib.colors as mcolors
1818
import matplotlib.contour as mcontour
19-
import matplotlib.dates as mdates
2019
from matplotlib import docstring
2120
import matplotlib.font_manager as font_manager
2221
import matplotlib.image as mimage
@@ -6743,7 +6742,6 @@ def fill_between(self, x, y1, y2=0, where=None, interpolate=False,
67436742

67446743
polys = []
67456744
for ind0, ind1 in mlab.contiguous_regions(where):
6746-
theseverts = []
67476745
xslice = x[ind0:ind1]
67486746
y1slice = y1[ind0:ind1]
67496747
y2slice = y2[ind0:ind1]
@@ -6877,7 +6875,6 @@ def fill_betweenx(self, y, x1, x2=0, where=None, **kwargs):
68776875

68786876
polys = []
68796877
for ind0, ind1 in mlab.contiguous_regions(where):
6880-
theseverts = []
68816878
yslice = y[ind0:ind1]
68826879
x1slice = x1[ind0:ind1]
68836880
x2slice = x2[ind0:ind1]

0 commit comments

Comments
 (0)