10000 PEP8 : whitespace changes · matplotlib/matplotlib@bc731ea · GitHub
[go: up one dir, main page]

Skip to content

Commit bc731ea

Browse files
committed
PEP8 : whitespace changes
1 parent bf6b146 commit bc731ea

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
@@ -2808,15 +2808,15 @@ def xywhere(xs, ys, mask):
28082808
else:
28092809
marker = mlines.CARETLEFT
28102810
caplines.extend(
2811-
self.plot(leftlo, ylo, ls='None', marker=marker,
2811+
self.plot(leftlo, ylo, ls='None', marker=marker,
28122812
**plot_kw))
28132813
if capsize > 0:
28142814
xup, yup = xywhere(x, y, xuplims & everymask)
28152815
caplines.extend(self.plot(xup, yup, 'k|', **plot_kw))
28162816

28172817
if yerr is not None:
28182818
if (iterable(yerr) and len(yerr) == 2 and
2819-
iterable(yerr[0]) and iterable(yerr[1])):
2819+
iterable(yerr[0]) and iterable(yerr[1])):
28202820
# using list comps rather than arrays to preserve units
28212821
lower = [thisy - thiserr for (thisy, thiserr)
28222822
in cbook.safezip(y, yerr[0])]

0 commit comments

Comments
 (0)
0