Skip to content

Commit d10ed5a

Browse files
committed
Fix tests
1 parent f85f9c4 commit d10ed5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/reshape/reshape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ def _stack_multi_column_index(columns: MultiIndex) -> MultiIndex | Index:
794794
[
795795
# Not all indices can accept None values.
796796
Index(new_lev, dtype=lev.dtype) if None not in new_lev else new_lev
797-
for new_lev, lev in zip(new_levs, columns.levels, strict=True)
797+
for new_lev, lev in zip(new_levs, columns.levels)
798798
],
799799
names=columns.names[:-1],
800800
)

0 commit comments

Comments
 (0)