Skip to content

Commit e98c745

Browse files
authored
STY: Add strict=True in zip() in pandas\tests\io\test_orc.py (#62587)
1 parent 845e287 commit e98c745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_orc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_orc_reader_empty(dirpath, using_infer_string):
5151
"str" if using_infer_string else "object",
5252
]
5353
expected = pd.DataFrame(index=pd.RangeIndex(0))
54-
for colname, dtype in zip(columns, dtypes):
54+
for colname, dtype in zip(columns, dtypes, strict=True):
5555
expected[colname] = pd.Series(dtype=dtype)
5656
expected.columns = expected.columns.astype("str")
5757

0 commit comments

Comments
 (0)