8000 minor pep8 fixes for [v|h]lines · matplotlib/matplotlib@39b5b24 · GitHub
[go: up one dir, main page]

Skip to content

Commit 39b5b24

Browse files
committed
minor pep8 fixes for [v|h]lines
1 parent e0f560f commit 39b5b24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
980980
verts = [((thisxmin, thisy), (thisxmax, thisy))
981981
for thisxmin, thisxmax, thisy in zip(xmin, xmax, y)]
982982
lines = mcoll.LineCollection(verts, colors=colors,
983-
linestyles=linestyles, label=label)
983+
linestyles=linestyles, label=label)
984984
self.add_collection(lines, autolim=False)
985985
lines.update(kwargs)
986986

@@ -1061,7 +1061,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
10611061
for thisx, thisymin, thisymax in zip(x, ymin, ymax)]
10621062
#print 'creating line collection'
10631063
lines = mcoll.LineCollection(verts, colors=colors,
1064-
linestyles=linestyles, label=label)
1064+
linestyles=linestyles, label=label)
10651065
self.add_collection(lines, autolim=False)
10661066
lines.update(kwargs)
10671067

0 commit comments

Comments
 (0)
0