Skip to content

Commit 389cb03

Browse files
committed
correct overload definitions
1 parent 59bd617 commit 389cb03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/generic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10363,7 +10363,7 @@ def any(
1036310363
self: DataFrame,
1036410364
axis: Axis = ...,
1036510365
bool_only: bool_t | None = ...,
10366-
skipna: bool_t = True,
10366+
skipna: bool_t = ...,
1036710367
level: Level | None = ...,
1036810368
**kwargs,
1036910369
) -> Series:
@@ -10374,7 +10374,7 @@ def any(
1037410374
self: Series,
1037510375
axis: Axis = ...,
1037610376
bool_only: bool_t | None = ...,
10377-
skipna: bool_t = True,
10377+
skipna: bool_t = ...,
1037810378
level: Level | None = ...,
1037910379
**kwargs,
1038010380
) -> bool_t:

0 commit comments

Comments
 (0)