8000 Fix missing indentation · matplotlib/matplotlib@6d6c786 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6d6c786

Browse files
committed
Fix missing indentation
1 parent 1f7228d commit 6d6c786

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2645,11 +2645,11 @@ def stem(self, *args, linefmt=None, markerfmt=None, basefmt=None, bottom=0,
26452645
'To remove this warning and switch to the new behaviour, '
26462646
'set the "use_line_collection" keyword argument to True.')
26472647
stemlines = []
2648-
for thisx, thisy in zip(x, y):
2649-
l, = self.plot([thisx, thisx], [bottom, thisy],
2648+
for xi, yi in zip(x, y):
2649+
l, = self.plot([xi, xi], [bottom, yi],
26502650
color=linecolor, linestyle=linestyle,
26512651
marker=linemarker, label="_nolegend_")
2652-
stemlines.append(l)
2652+
stemlines.append(l)
26532653

26542654
markerline, = self.plot(x, y, color=markercolor, linestyle=markerstyle,
26552655
marker=markermarker, label="_nolegend_")

0 commit comments

Comments
 (0)
0