Skip to content

Commit 3d48574

Browse files
committed
mypy
1 parent 6548960 commit 3d48574

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
@@ -136,7 +136,7 @@ def wrapped(*call_args: Any, **call_kwargs: Any) -> Any:
136136
final_kwargs = {**kwargs, **call_kwargs}
137137
return original_func(series, *final_args, **final_kwargs)
138138

139-
wrapped._is_wrapped = True
139+
wrapped._is_wrapped = True # type: ignore[attr-defined]
140140
aggfunc = wrapped
141141
return super().__new__(cls, (column, aggfunc))
142142

0 commit comments

Comments
 (0)