File tree 1 file changed +6
-6
lines changed 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3595,20 +3595,20 @@ def apply_mask(arrays, mask):
3595
3595
if not caplines [axis ]:
3596
3596
continue
3597
3597
lo , hi = caplines [axis ]
3598
- for (lo_theta , lo_r ,
3598
+ for (lo_theta , lo_r ,
3599
3599
hi_theta , hi_r ) in zip (
3600
3600
lo .get_xdata (), lo .get_ydata (),
3601
3601
hi .get_xdata (), hi .get_ydata ()):
3602
3602
# Rotate caps to be perpendicular to the error bars
3603
3603
rotation = (lo_theta + hi_theta )/ 2
3604
3604
if axis == 'x' :
3605
- rotation += np .pi / 2
3605
+ rotation += np .pi / 2
3606
3606
ms = mmarkers .MarkerStyle (marker = marker )
3607
3607
ms ._transform = mtransforms .Affine2D ().rotate (rotation )
3608
- self .add_line (mlines .Line2D ([lo_theta ], [lo_r ], marker = ms ,
3609
- ** eb_cap_style ))
3610
- self .add_line (mlines .Line2D ([hi_theta ], [hi_r ], marker = ms ,
3611
- ** eb_cap_style ))
3608
+ self .add_line (mlines .Line2D ([lo_theta ], [lo_r ],
3609
+ marker = ms , ** eb_cap_style ))
3610
+ self .add_line (mlines .Line2D ([hi_theta ], [hi_r ],
3611
+ marker = ms , ** eb_cap_style ))
3612
3612
else :
3613
3613
for axis in caplines :
3614
3614
for l in caplines [axis ]:
You can’t perform that action at this time.
0 commit comments