@@ -2909,14 +2909,16 @@ def streamplot(
2909
2909
x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
2910
2910
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
2911
2911
transform = None , zorder = None , start_points = None , maxlength = 4.0 ,
2912
- integration_direction = 'both' , broken_streamlines = True , * , data = None ):
2912
+ integration_direction = 'both' , broken_streamlines = True , * ,
2913
+ data = None ):
2913
2914
__ret = gca ().streamplot (
2914
2915
x , y , u , v , density = density , linewidth = linewidth , color = color ,
2915
2916
cmap = cmap , norm = norm , arrowsize = arrowsize ,
2916
2917
arrowstyle = arrowstyle , minlength = minlength ,
2917
2918
transform = transform , zorder = zorder , start_points = start_points ,
2918
2919
maxlength = maxlength ,
2919
- integration_direction = integration_direction , broken_streamlines = broken_streamlines ,
2920
+ integration_direction = integration_direction ,
2921
+ broken_streamlines = broken_streamlines ,
2920
2922
** ({"data" : data } if data is not None else {}))
2921
2923
sci (__ret .lines )
2922
2924
return __ret
0 commit comments