Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a04e35f + 4242506 commit 087a142Copy full SHA for 087a142
2 files changed
lib/matplotlib/figure.pyi
@@ -132,7 +132,7 @@ class FigureBase(Artist):
132
height_ratios: Sequence[float] | None = ...,
133
subplot_kw: dict[str, Any] | None = ...,
134
gridspec_kw: dict[str, Any] | None = ...,
135
- ) -> Axes | np.ndarray: ...
+ ) -> Any: ...
136
def delaxes(self, ax: Axes) -> None: ...
137
def clear(self, keep_observers: bool = ...) -> None: ...
138
def clf(self, keep_observers: bool = ...) -> None: ...
lib/matplotlib/pyplot.py
@@ -1609,7 +1609,7 @@ def subplots(
1609
1610
1611
**fig_kw
1612
-) -> tuple[Figure, Axes | np.ndarray]:
+) -> tuple[Figure, Any]:
1613
...
1614
1615
0 commit comments