Skip to content

Commit 99bc9a7

Browse files
committed
REL: Add type hint for fig_kw in subplots (Fixes #31003)
1 parent 5dee947 commit 99bc9a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1665,7 +1665,7 @@ def subplots(
16651665
height_ratios: Sequence[float] | None = ...,
16661666
subplot_kw: dict[str, Any] | None = ...,
16671667
gridspec_kw: dict[str, Any] | None = ...,
1668-
**fig_kw
1668+
**fig_kw: Any
16691669
) -> tuple[Figure, Axes]:
16701670
...
16711671

0 commit comments

Comments
 (0)