Skip to content

Commit

Permalink
remove unnecessary trailing commas (pandas-dev#35930)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored and AlexKirko committed Aug 31, 2020
1 parent 5128d1b commit fba43cb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pandas/core/aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@


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

0 comments on commit fba43cb

Please sign in to comment.