Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed5d5ac

Browse files
committed
Fix formatting
1 parent 6c1a222 commit ed5d5ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3595,20 +3595,20 @@ def apply_mask(arrays, mask):
35953595
if not caplines[axis]:
35963596
continue
35973597
lo, hi = caplines[axis]
3598-
for (lo_theta, lo_r,
3598+
for (lo_theta, lo_r,
35993599
hi_theta, hi_r) in zip(
36003600
lo.get_xdata(), lo.get_ydata(),
36013601
hi.get_xdata(), hi.get_ydata()):
36023602
# Rotate caps to be perpendicular to the error bars
36033603
rotation = (lo_theta + hi_theta)/2
36043604
if axis == 'x':
3605-
rotation += np.pi / 2
3605+
rotation += np.pi / 2
36063606
ms = mmarkers.MarkerStyle(marker=marker)
36073607
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))
36123612
else:
36133613
for axis in caplines:
36143614
for l in caplines[axis]:

0 commit comments

Comments
 (0)