Skip to content

Commit 9ba6f02

Browse files
committed
Fix minor code style issues
1 parent ac3b242 commit 9ba6f02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/matplotlib/mlab.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3195,7 +3195,7 @@ def offset_line(y, yerr):
31953195
o A tuple of length 2. In this case, yerr[0] is the error below *y* and
31963196
yerr[1] is error above *y*.
31973197
3198-
.. For example::
3198+
Example::
31993199
32003200
from pylab import *
32013201
x = linspace(0, 2*pi, num=100, endpoint=True)
@@ -3204,6 +3204,7 @@ def offset_line(y, yerr):
32043204
plot(x, y)
32053205
fill_between(x, ym, y2=yp)
32063206
show()
3207+
32073208
"""
32083209
if cbook.is_numlike(yerr) or (cbook.iterable(yerr) and len(yerr) == len(y)):
32093210
ymin = y - yerr

0 commit comments

Comments
 (0)