From c2ed128e9f83375e588b1de0aa09804691c960a6 Mon Sep 17 00:00:00 2001 From: AKHIL-149 Date: Sun, 7 Dec 2025 18:11:56 -0500 Subject: [PATCH] STY: Use strict arg in zip() in pandas/tests/dtypes --- pandas/tests/dtypes/test_inference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/tests/dtypes/test_inference.py b/pandas/tests/dtypes/test_inference.py index 362b6d09a23a6..5cea1276f7f4b 100644 --- a/pandas/tests/dtypes/test_inference.py +++ b/pandas/tests/dtypes/test_inference.py @@ -188,10 +188,10 @@ def shape(self): (np.nan, False, "NaN"), (None, False, "None"), ] -objs, expected, ids = zip(*ll_params) +objs, expected, ids = zip(*ll_params, strict=True) -@pytest.fixture(params=zip(objs, expected), ids=ids) +@pytest.fixture(params=zip(objs, expected, strict=True), ids=ids) def maybe_list_like(request): return request.param