Skip to content

Commit 021e8df

Browse files
committed
Merge branch 'main' into feature/cmp0xff/624-extension-array-accumulate
2 parents 3a6710b + 91dd427 commit 021e8df

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

pandas-stubs/api/typing/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ from pandas.core.groupby import (
22
DataFrameGroupBy as DataFrameGroupBy,
33
SeriesGroupBy as SeriesGroupBy,
44
)
5-
from pandas.core.indexes.frozen import FrozenList as FrozenList
65
from pandas.core.resample import (
76
DatetimeIndexResamplerGroupby as DatetimeIndexResamplerGroupby,
87
PeriodIndexResamplerGroupby as PeriodIndexResamplerGroupby,

pandas-stubs/core/groupby/grouper.pyi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ from collections.abc import (
33
Iterator,
44
)
55
from typing import (
6+
Any,
67
final,
78
overload,
89
)
@@ -47,7 +48,7 @@ class Grouper:
4748
dropna: bool = ...,
4849
) -> Self: ...
4950
@overload
50-
def __new__(cls, *args, freq: Frequency, **kwargs) -> TimeGrouper: ...
51+
def __new__(cls, *args: Any, freq: Frequency, **kwargs: Any) -> TimeGrouper: ...
5152
@final
5253
def __repr__(self) -> str: ... # noqa: PYI029 __repr__ here is final
5354

pandas-stubs/core/indexes/frozen.pyi

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)