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 bef8a80 commit 16337afCopy full SHA for 16337af
pandas/core/groupby/generic.py
@@ -141,7 +141,7 @@ def wrapped(*call_args: Any, **call_kwargs: Any) -> Any:
141
final_kwargs = {**kwargs, **call_kwargs}
142
return original_func(series, *final_args, **final_kwargs)
143
144
- wrapped._is_wrapped = True
+ wrapped._is_wrapped = True # type: ignore[attr-defined]
145
aggfunc = wrapped
146
return super().__new__(cls, (column, aggfunc))
147
0 commit comments