Skip to content

Commit 3f2b577

Browse files
committed
Rerender pyplot.py
1 parent a570512 commit 3f2b577

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2669,7 +2669,7 @@ def barh(
26692669
left: float | ArrayLike | None = None,
26702670
*,
26712671
align: Literal["center", "edge"] = "center",
2672-
data: Any | None = None,
2672+
data=None,
26732673
**kwargs,
26742674
) -> BarContainer:
26752675
return gca().barh(
@@ -2983,7 +2983,7 @@ def eventplot(
29832983

29842984
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
29852985
@_copy_docstring_and_deprecators(Axes.fill)
2986-
def fill(*args, data: Any | None = None, **kwargs) -> list[Polygon]:
2986+
def fill(*args, data=None, **kwargs) -> list[Polygon]:
29872987
return gca().fill(*args, **({"data": data} if data is not None else {}), **kwargs)
29882988

29892989

@@ -3476,7 +3476,7 @@ def plot(
34763476
*args: float | ArrayLike | str,
34773477
scalex: bool = True,
34783478
scaley: bool = True,
3479-
data: Any | None = None,
3479+
data=None,
34803480
**kwargs,
34813481
) -> list[Line2D]:
34823482
return gca().plot(
@@ -3740,7 +3740,7 @@ def step(
37403740
y: ArrayLike,
37413741
*args,
37423742
where: Literal["pre", "post", "mid"] = "pre",
3743-
data: Any | None = None,
3743+
data=None,
37443744
**kwargs,
37453745
) -> list[Line2D]:
37463746
return gca().step(

0 commit comments

Comments
 (0)