@@ -2669,7 +2669,7 @@ def barh(
2669
2669
left : float | ArrayLike | None = None ,
2670
2670
* ,
2671
2671
align : Literal ["center" , "edge" ] = "center" ,
2672
- data : Any | None = None ,
2672
+ data = None ,
2673
2673
** kwargs ,
2674
2674
) -> BarContainer :
2675
2675
return gca ().barh (
@@ -2983,7 +2983,7 @@ def eventplot(
2983
2983
2984
2984
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2985
2985
@_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 ]:
2987
2987
return gca ().fill (* args , ** ({"data" : data } if data is not None else {}), ** kwargs )
2988
2988
2989
2989
@@ -3476,7 +3476,7 @@ def plot(
3476
3476
* args : float | ArrayLike | str ,
3477
3477
scalex : bool = True ,
3478
3478
scaley : bool = True ,
3479
- data : Any | None = None ,
3479
+ data = None ,
3480
3480
** kwargs ,
3481
3481
) -> list [Line2D ]:
3482
3482
return gca ().plot (
@@ -3740,7 +3740,7 @@ def step(
3740
3740
y : ArrayLike ,
3741
3741
* args ,
3742
3742
where : Literal ["pre" , "post" , "mid" ] = "pre" ,
3743
- data : Any | None = None ,
3743
+ data = None ,
3744
3744
** kwargs ,
3745
3745
) -> list [Line2D ]:
3746
3746
return gca ().step (
0 commit comments