Skip to content

Commit c2ed128

Browse files
committed
STY: Use strict arg in zip() in pandas/tests/dtypes
1 parent 311f92e commit c2ed128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/dtypes/test_inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ def shape(self):
188188
(np.nan, False, "NaN"),
189189
(None, False, "None"),
190190
]
191-
objs, expected, ids = zip(*ll_params)
191+
objs, expected, ids = zip(*ll_params, strict=True)
192192

193193

194-
@pytest.fixture(params=zip(objs, expected), ids=ids)
194+
@pytest.fixture(params=zip(objs, expected, strict=True), ids=ids)
195195
def maybe_list_like(request):
196196
return request.param
197197

0 commit comments

Comments
 (0)