Skip to content

Commit a399a8e

Browse files
committed
TST: apply Ruff auto-fix
1 parent aa3940e commit a399a8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers/base_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def _extract_multi_indexer_columns(
237237
def extract(r):
238238
return tuple(r[i] for i in range(field_count) if i not in sic)
239239

240-
columns = list(zip(*(extract(r) for r in header)))
240+
columns = list(zip(*(extract(r) for r in header), strict=False))
241241
# Clean the columns by removing placeholders.
242242
columns = self._clean_column_levels(columns)
243243

0 commit comments

Comments
 (0)