8000 run boilerplate.py · matplotlib/matplotlib@1b76817 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1b76817

Browse files
committed
run boilerplate.py
1 parent e2039f8 commit 1b76817

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
@@ -2604,9 +2604,16 @@ def subplots_adjust(
26042604
top: float | None = None,
26052605
wspace: float | None = None,
26062606
hspace: float | None = None,
2607+
rc_default: bool = False,
26072608
) -> None:
26082609
gcf().subplots_adjust(
2609-
left=left, bottom=bottom, right=right, top=top, wspace=wspace, hspace=hspace
2610+
left=left,
2611+
bottom=bottom,
2612+
right=right,
2613+
top=top,
2614+
wspace=wspace,
2615+
hspace=hspace,
2616+
rc_default=rc_default,
26102617
)
26112618

26122619

0 commit comments

Comments
 (0)
0