Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(ty): ignore
  • Loading branch information
cmp0xff committed Aug 18, 2025
commit f300b5d97444efc3e1627f649dea41b118a94831
6 changes: 3 additions & 3 deletions pandas-stubs/core/groupby/groupby.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ from pandas._typing import (
from pandas.plotting import PlotAccessor

_ResamplerGroupBy: TypeAlias = (
DatetimeIndexResamplerGroupby[NDFrameT]
| PeriodIndexResamplerGroupby[NDFrameT]
| TimedeltaIndexResamplerGroupby[NDFrameT]
DatetimeIndexResamplerGroupby[NDFrameT] # ty: ignore[invalid-argument-type]
| PeriodIndexResamplerGroupby[NDFrameT] # ty: ignore[invalid-argument-type]
| TimedeltaIndexResamplerGroupby[NDFrameT] # ty: ignore[invalid-argument-type]
)

class GroupBy(BaseGroupBy[NDFrameT]):
Expand Down
Loading