@@ -3268,7 +3268,7 @@ def step(x, y, *args, **kwargs):
3268
3268
@_autogen_docstring (Axes .streamplot )
3269
3269
def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
3270
3270
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3271
- maxlength = 4.0 , transform = None , zorder = 2 , start_points = None ,
3271
+ transform = None , zorder = 2 , start_points = None , maxlength = 4.0 ,
3272
3272
integration_direction = 'both' , hold = None , data = None ):
3273
3273
ax = gca ()
3274
3274
# allow callers to override the hold state by passing hold=True|False
@@ -3280,9 +3280,9 @@ def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
3280
3280
ret = ax .streamplot (x , y , u , v , density = density , linewidth = linewidth ,
3281
3281
color = color , cmap = cmap , norm = norm ,
3282
3282
arrowsize = arrowsize , arrowstyle = arrowstyle ,
3283
- minlength = minlength , maxlength = maxlength ,
3284
- transform = transform , zorder = zorder ,
3285
- start_points = start_points ,
3283
+ minlength = minlength , transform = transform ,
3284
+ zorder = zorder , start_points = start_points ,
3285
+ maxlength = maxlength ,
3286
3286
integration_direction = integration_direction ,
3287
3287
data = data )
3288
3288
finally :
0 commit comments