Skip to content

Commit 328a1dc

Browse files
authored
remove unnecessary trailing commas (#35930)
1 parent 1f35b06 commit 328a1dc

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)