From 511da52c813ca34a2ab6b0deb2934c658fea99b9 Mon Sep 17 00:00:00 2001 From: Jeroen Van Der Donckt <18898740+jvdd@users.noreply.github.com> Date: Mon, 16 Oct 2023 09:08:59 +0200 Subject: [PATCH] :see_no_evil: manual instead of groupby logged window name --- tsflex/features/feature_collection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsflex/features/feature_collection.py b/tsflex/features/feature_collection.py index e903e88d..f0f2d58d 100644 --- a/tsflex/features/feature_collection.py +++ b/tsflex/features/feature_collection.py @@ -329,7 +329,7 @@ def f(x: pd.DataFrame): feat_out = _process_func_output(out, group_ids, output_names, str(function)) # Log the function execution time _log_func_execution( - t_start, function, tuple(cols), "groupby_all", "groupby_all", output_names + t_start, function, tuple(cols), "manual", "manual", output_names ) return pd.DataFrame(feat_out, index=group_ids).rename_axis(index=group_id_name)