Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ class Axes(_AxesBase):
x: ArrayLike,
y1: ArrayLike | float,
y2: ArrayLike | float = ...,
where: Sequence[bool] | None = ...,
where: ArrayLike | None = ...,
interpolate: bool = ...,
step: Literal["pre", "post", "mid"] | None = ...,
*,
Expand All @@ -494,7 +494,7 @@ class Axes(_AxesBase):
y: ArrayLike,
x1: ArrayLike | float,
x2: ArrayLike | float = ...,
where: Sequence[bool] | None = ...,
where: ArrayLike | None = ...,
step: Literal["pre", "post", "mid"] | None = ...,
interpolate: bool = ...,
*,
Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -3499,7 +3499,7 @@ def fill_between(
x: ArrayLike,
y1: ArrayLike | float,
y2: ArrayLike | float = 0,
where: Sequence[bool] | None = None,
where: ArrayLike | None = None,
interpolate: bool = False,
step: Literal["pre", "post", "mid"] | None = None,
*,
Expand All @@ -3524,7 +3524,7 @@ def fill_betweenx(
y: ArrayLike,
x1: ArrayLike | float,
x2: ArrayLike | float = 0,
where: Sequence[bool] | None = None,
where: ArrayLike | None = None,
step: Literal["pre", "post", "mid"] | None = None,
interpolate: bool = False,
*,
Expand Down
Loading