Skip to content

Commit 6ad4e85

Browse files
committed
updated boilerplate
1 parent 7d6fced commit 6ad4e85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2994,7 +2994,7 @@ def stackplot(x, *args, **kwargs):
29942994
draw_if_interactive()
29952995
finally:
29962996
ax.hold(washold)
2997-
2997+
29982998
return ret
29992999

30003000
# This function was autogenerated by boilerplate.py. Do not edit as
@@ -3040,7 +3040,7 @@ def step(x, y, *args, **kwargs):
30403040
@autogen_docstring(Axes.streamplot)
30413041
def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
30423042
norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1,
3043-
hold=None):
3043+
transform=None, hold=None):
30443044
ax = gca()
30453045
# allow callers to override the hold state by passing hold=True|False
30463046
washold = ax.ishold()
@@ -3051,7 +3051,7 @@ def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
30513051
ret = ax.streamplot(x, y, u, v, density=density, linewidth=linewidth,
30523052
color=color, cmap=cmap, norm=norm,
30533053
arrowsize=arrowsize, arrowstyle=arrowstyle,
3054-
minlength=minlength)
3054+
minlength=minlength, transform=transform)
30553055
draw_if_interactive()
30563056
finally:
30573057
ax.hold(washold)

0 commit comments

Comments
 (0)