From bbd14fd096d68ded5f48ffd6f891e9cafecaf118 Mon Sep 17 00:00:00 2001 From: Wilson Beebe Date: Thu, 18 Apr 2024 16:58:13 -0700 Subject: [PATCH] Removed whitespace --- src/nested_pandas/nestedframe/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nested_pandas/nestedframe/core.py b/src/nested_pandas/nestedframe/core.py index da19ac6..c9d6297 100644 --- a/src/nested_pandas/nestedframe/core.py +++ b/src/nested_pandas/nestedframe/core.py @@ -344,7 +344,7 @@ def reduce(self, func, *args, **kwargs) -> NestedFrame: The recommend return value of func should be a `pd.Series` where the indices are the names of the output columns in the dataframe returned by `reduce`. Note however that in cases where func returns a single value there may be a performance benefit to returning the scalar value - rather than a `pd.Series`. + rather than a `pd.Series`. Example User Function: ```