Skip to content

Commit 93571af

Browse files
committed
tidy function
1 parent a71aaf4 commit 93571af

File tree

1 file changed

+0
-4
lines changed
  • src/nested_pandas/nestedframe

1 file changed

+0
-4
lines changed

src/nested_pandas/nestedframe/core.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,14 +384,10 @@ def reduce(self, func, *args, **kwargs) -> NestedFrame: # type: ignore[override
384384
385385
Example User Function:
386386
387-
>>> import pandas as pd
388-
389387
>>> def my_sum(col1, col2):
390388
>>> '''reduce will return a NestedFrame with two columns'''
391389
>>> return {"sum_col1": sum(col1), "sum_col2": sum(col2)}
392390
393-
```
394-
395391
"""
396392
# Parse through the initial args to determine the columns to apply the function to
397393
requested_columns = []

0 commit comments

Comments
 (0)