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.
1 parent aa3940e commit a399a8eCopy full SHA for a399a8e
pandas/io/parsers/base_parser.py
@@ -237,7 +237,7 @@ def _extract_multi_indexer_columns(
237
def extract(r):
238
return tuple(r[i] for i in range(field_count) if i not in sic)
239
240
- columns = list(zip(*(extract(r) for r in header)))
+ columns = list(zip(*(extract(r) for r in header), strict=False))
241
# Clean the columns by removing placeholders.
242
columns = self._clean_column_levels(columns)
243
0 commit comments