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

Skip to content

Commit e48d4b7

Browse files
committed
FIX missing imports
1 parent 0741f57 commit e48d4b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/matplotlib/axes/_lines.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from matplotlib import transforms as mtransforms
77
from matplotlib import lines as mlines
8+
from matplotlib import patches as mpatches
89
from matplotlib import collections as mcoll
910
from matplotlib.cbook import iterable
1011

@@ -239,8 +240,6 @@ def hlines(ax, y, xmin, xmax, colors='k', linestyles='solid',
239240
def vlines(ax, x, ymin, ymax, colors='k', linestyles='solid',
240241
label='', **kwargs):
241242
"""
242-
Plot vertical lines.
243-
244243
Plot vertical lines at each `x` from `ymin` to `ymax`.
245244
246245
Parameters

0 commit comments

Comments
 (0)