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

Skip to content

Commit 46a04c6

Browse files
authored
Merge pull request #23880 from meeseeksmachine/auto-backport-of-pr-23862-on-v3.6.x
Backport PR #23862 on branch v3.6.x (Remove triggering of deprecation warning in AnchoredEllipse)
2 parents 190f4dd + 1cee0af commit 46a04c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mpl_toolkits/axes_grid1/anchored_artists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def __init__(self, transform, width, height, angle, loc,
164164
Ellipse patch drawn.
165165
"""
166166
self._box = AuxTransformBox(transform)
167-
self.ellipse = Ellipse((0, 0), width, height, angle)
167+
self.ellipse = Ellipse((0, 0), width, height, angle=angle)
168168
self._box.add_artist(self.ellipse)
169169

170170
super().__init__(loc, pad=pad, borderpad=borderpad, child=self._box,

0 commit comments

Comments
 (0)