Skip to content

Commit 110d5c9

Browse files
MarcoGorelliKevin D Smith
authored and
Kevin D Smith
committed
remove unnecessary trailing commas (pandas-dev#35930)
1 parent 578a619 commit 110d5c9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/core/aggregation.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@
2828

2929

3030
def reconstruct_func(
31-
func: Optional[AggFuncType], **kwargs,
32-
) -> Tuple[
33-
bool, Optional[AggFuncType], Optional[List[str]], Optional[List[int]],
34-
]:
31+
func: Optional[AggFuncType], **kwargs
32+
) -> Tuple[bool, Optional[AggFuncType], Optional[List[str]], Optional[List[int]]]:
3533
"""
3634
This is the internal function to reconstruct func given if there is relabeling
3735
or not and also normalize the keyword to get new order of columns.

0 commit comments

Comments
 (0)