Skip to content

Commit b70e14e

Browse files
committed
strict to false
1 parent ce141ba commit b70e14e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers/c_parser_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def read(
317317
if self.usecols is None:
318318
self._check_data_length(names, alldata)
319319

320-
data = {k: v for k, (i, v) in zip(names, data_tups, strict=True)}
320+
data = {k: v for k, (i, v) in zip(names, data_tups, strict=False)}
321321

322322
date_data = self._do_date_conversions(names, data)
323323
index, column_names = self._make_index(alldata, names)

0 commit comments

Comments
 (0)