We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
strict=True
zip()
1 parent 845e287 commit e98c745Copy full SHA for e98c745
pandas/tests/io/test_orc.py
@@ -51,7 +51,7 @@ def test_orc_reader_empty(dirpath, using_infer_string):
51
"str" if using_infer_string else "object",
52
]
53
expected = pd.DataFrame(index=pd.RangeIndex(0))
54
- for colname, dtype in zip(columns, dtypes):
+ for colname, dtype in zip(columns, dtypes, strict=True):
55
expected[colname] = pd.Series(dtype=dtype)
56
expected.columns = expected.columns.astype("str")
57
0 commit comments