We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389cb03 commit 076efc0Copy full SHA for 076efc0
pandas/core/generic.py
@@ -10380,6 +10380,17 @@ def any(
10380
) -> bool_t:
10381
...
10382
10383
+ @overload
10384
+ def any(
10385
+ self: NDFrame,
10386
+ axis: Axis = ...,
10387
+ bool_only: bool_t | None = ...,
10388
+ skipna: bool_t = ...,
10389
+ level: Level | None = ...,
10390
+ **kwargs,
10391
+ ) -> Series | bool_t:
10392
+ ...
10393
+
10394
def any(
10395
self,
10396
axis: Axis = 0,
0 commit comments