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

Skip to content

Commit ceeed8d

Browse files
committed
run boilerplate.py
1 parent e2f1cbf commit ceeed8d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lib/matplotlib/pyplot.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2562,9 +2562,16 @@ def subplots_adjust(
25622562
top: float | None = None,
25632563
wspace: float | None = None,
25642564
hspace: float | None = None,
2565+
rc_default: bool = False,
25652566
) -> None:
25662567
gcf().subplots_adjust(
2567-
left=left, bottom=bottom, right=right, top=top, wspace=wspace, hspace=hspace
2568+
left=left,
2569+
bottom=bottom,
2570+
right=right,
2571+
top=top,
2572+
wspace=wspace,
2573+
hspace=hspace,
2574+
rc_default=rc_default,
25682575
)
25692576

25702577

0 commit comments

Comments
 (0)