Skip to content

Commit 87974c0

Browse files
authored
remove trailing comma (#36441)
1 parent d6678d1 commit 87974c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/transform/test_numba.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def func_1(values, index):
131131

132132
@td.skip_if_no("numba", "0.46.0")
133133
@pytest.mark.parametrize(
134-
"agg_func", [["min", "max"], "min", {"B": ["min", "max"], "C": "sum"}],
134+
"agg_func", [["min", "max"], "min", {"B": ["min", "max"], "C": "sum"}]
135135
)
136136
def test_multifunc_notimplimented(agg_func):
137137
data = DataFrame(

0 commit comments

Comments
 (0)