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 9f1ab6e commit 708a9b1Copy full SHA for 708a9b1
pandas/core/groupby/generic.pyi
@@ -12,12 +12,11 @@ if sys.version_info >= (3, 8):
12
else:
13
from typing_extensions import Literal
14
15
-class NamedAgg(NamedTuple):
16
- column: str = ...
17
- aggfunc: AggFuncType = ...
18
-
19
AggScalar = Union[str, Callable[..., Any]]
20
ScalarResult = ...
+class NamedAgg(NamedTuple):
+ column: str = ...
+ aggfunc: AggScalar = ...
21
22
def generate_property(name: str, klass: Type[FrameOrSeries]) : ...
23
def pin_whitelisted_properties(klass: Type[FrameOrSeries], whitelist: FrozenSet[str]) : ...
0 commit comments