8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0f560f commit 39b5b24Copy full SHA for 39b5b24
lib/matplotlib/axes/_axes.py
@@ -980,7 +980,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
980
verts = [((thisxmin, thisy), (thisxmax, thisy))
981
for thisxmin, thisxmax, thisy in zip(xmin, xmax, y)]
982
lines = mcoll.LineCollection(verts, colors=colors,
983
- linestyles=linestyles, label=label)
+ linestyles=linestyles, label=label)
984
self.add_collection(lines, autolim=False)
985
lines.update(kwargs)
986
@@ -1061,7 +1061,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
1061
for thisx, thisymin, thisymax in zip(x, ymin, ymax)]
1062
#print 'creating line collection'
1063
1064
1065
1066
1067
0 commit comments