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 6548960 commit 3d48574Copy full SHA for 3d48574
pandas/core/groupby/generic.py
@@ -136,7 +136,7 @@ def wrapped(*call_args: Any, **call_kwargs: Any) -> Any:
136
final_kwargs = {**kwargs, **call_kwargs}
137
return original_func(series, *final_args, **final_kwargs)
138
139
- wrapped._is_wrapped = True
+ wrapped._is_wrapped = True # type: ignore[attr-defined]
140
aggfunc = wrapped
141
return super().__new__(cls, (column, aggfunc))
142
0 commit comments