From 2487914b199c0a5043b4df6b60346a0f6086874c Mon Sep 17 00:00:00 2001 From: Lawrence Mitchell Date: Wed, 27 Nov 2024 16:47:23 +0000 Subject: [PATCH] Simplify splat-list-iterable into splat-iterable Co-authored-by: Matthew Murray <41342305+Matt711@users.noreply.github.com> --- python/cudf/cudf/tests/test_groupby.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/cudf/cudf/tests/test_groupby.py b/python/cudf/cudf/tests/test_groupby.py index b93a098264f..eae0fd23ef8 100644 --- a/python/cudf/cudf/tests/test_groupby.py +++ b/python/cudf/cudf/tests/test_groupby.py @@ -2016,9 +2016,7 @@ def test_multi_agg(): "agg", ( [ - *list( - itertools.combinations(["count", "max", "min", "nunique"], 2) - ), + *itertools.combinations(["count", "max", "min", "nunique"], 2), {"b": "min", "c": "mean"}, {"b": "max", "c": "mean"}, {"b": "count", "c": "mean"},