Skip to content

Commit cb54640

Browse files
fix concat tests
1 parent 1564d4f commit cb54640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _get_combined_index(indexes, intersect=False, sort=False):
112112
elif intersect:
113113
index = indexes[0]
114114
for other in indexes[1:]:
115-
index = index.intersection(other, sort=sort)
115+
index = index.intersection(other)
116116
else:
117117
index = _union_indexes(indexes, sort=sort)
118118
index = ensure_index(index)

0 commit comments

Comments
 (0)