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

Skip to content

Commit 291d5d7

Browse files
authored
Merge pull request #17142 from brunobeltran/add_axes-kwargs-bugfix
BUGFIX: conditional for add_axes arg deprecation
2 parents e55e79b + dd7259f commit 291d5d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/figure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ def add_axes(self, *args, **kwargs):
12041204
fig.add_axes(ax)
12051205
"""
12061206

1207-
if not len(args):
1207+
if not len(args) and 'rect' not in kwargs:
12081208
cbook.warn_deprecated(
12091209
"3.3",
12101210
message="Calling add_axes() without argument is "

0 commit comments

Comments
 (0)