From be395411594f9a091001627630d585f10dc7bb73 Mon Sep 17 00:00:00 2001 From: Lindsey Gray Date: Wed, 4 Dec 2024 17:20:06 -0600 Subject: [PATCH] lint --- tests/test_3325_ak_flatten_indexed_option_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_3325_ak_flatten_indexed_option_array.py b/tests/test_3325_ak_flatten_indexed_option_array.py index ae9347bcbd..a50d0cf6f3 100644 --- a/tests/test_3325_ak_flatten_indexed_option_array.py +++ b/tests/test_3325_ak_flatten_indexed_option_array.py @@ -49,6 +49,6 @@ ttarray = ak.Array(ttlayout) -@pytest.mark.parametrize("ax", [None] + [i for i in range(4)]) +@pytest.mark.parametrize("ax", [None] + list(i for i in range(4))) def test_3325_flatten_index_option_array(ax): ak.flatten(ttarray, axis=ax)