Skip to content

Commit 6fc76e3

Browse files
committed
Merge pull request matplotlib#2496 from androomerrill/inset_locator_fix
Adding a missing 'b' back into two 'bbox_' kwargs
2 parents 170de26 + 29d5bb8 commit 6fc76e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mpl_toolkits/axes_grid1/inset_locator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def __init__(self, bbox_to_anchor, offsetbox, loc,
3939
super(AnchoredLocatorBase, self).__init__(loc,
4040
pad=0., child=None,
4141
borderpad=borderpad,
42-
box_to_anchor=bbox_to_anchor,
43-
box_transform=bbox_transform)
42+
bbox_to_anchor=bbox_to_anchor,
43+
bbox_transform=bbox_transform)
4444

4545
def draw(self, renderer):
4646
raise RuntimeError("No draw method should be called")

0 commit comments

Comments
 (0)