Skip to content

Commit 16337af

Browse files
committed
mypy
1 parent bef8a80 commit 16337af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def wrapped(*call_args: Any, **call_kwargs: Any) -> Any:
141141
final_kwargs = {**kwargs, **call_kwargs}
142142
return original_func(series, *final_args, **final_kwargs)
143143

144-
wrapped._is_wrapped = True
144+
wrapped._is_wrapped = True # type: ignore[attr-defined]
145145
aggfunc = wrapped
146146
return super().__new__(cls, (column, aggfunc))
147147

0 commit comments

Comments
 (0)