Skip to content

Commit

Permalink
tidy function
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbrn committed Jun 10, 2024
1 parent a71aaf4 commit 93571af
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/nested_pandas/nestedframe/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,10 @@ def reduce(self, func, *args, **kwargs) -> NestedFrame: # type: ignore[override
Example User Function:
>>> import pandas as pd
>>> def my_sum(col1, col2):
>>> '''reduce will return a NestedFrame with two columns'''
>>> return {"sum_col1": sum(col1), "sum_col2": sum(col2)}
```
"""
# Parse through the initial args to determine the columns to apply the function to
requested_columns = []
Expand Down

0 comments on commit 93571af

Please sign in to comment.