Skip to content

Commit 816a7c0

Browse files
PR Feedback
1 parent 264cccb commit 816a7c0

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pandas-stubs/core/series.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ class Series(IndexOpsMixin[S1], NDFrame):
12221222
def droplevel(self, level: Level | list[Level], axis: AxisIndex = ...) -> Self: ...
12231223
def pop(self, item: Hashable) -> S1: ...
12241224
@final
1225-
def squeeze(self, axis: Axis = ...) -> Series[S1] | Scalar: ...
1225+
def squeeze(self, axis: None = ...) -> Series[S1] | Scalar: ...
12261226
@final
12271227
def __abs__(self) -> Series[S1]: ...
12281228
@final
@@ -1584,7 +1584,6 @@ class Series(IndexOpsMixin[S1], NDFrame):
15841584
periods: int = ...,
15851585
fill_method: None = ...,
15861586
freq: DateOffset | timedelta | _str | None = ...,
1587-
limit: int | None = ..., # deprecated since 2.1
15881587
*,
15891588
fill_value: Scalar | NAType | None = ...,
15901589
) -> Series[float]: ...

pandas-stubs/io/parquet.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def read_parquet(
1515
engine: ParquetEngine = ...,
1616
columns: list[str] | None = ...,
1717
storage_options: StorageOptions = ...,
18-
use_nullable_dtypes: bool = ..., # deprecated since 2.0
1918
dtype_backend: DtypeBackend = ...,
2019
filesystem: Any = None,
2120
filters: list[tuple] | list[list[tuple]] | None = None,

0 commit comments

Comments
 (0)