Skip to content

Commit d4368ba

Browse files
committed
remove another extra )
1 parent 3ef8ef4 commit d4368ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/indexes/multi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ def from_tuples(cls, tuples, sortorder=None, names=None):
974974
raise TypeError('Cannot infer number of levels from empty list')
975975

976976
if not _check_equal_length(tuples):
977-
raise ValueError('all tuples must be the same length'))
977+
raise ValueError('all tuples must be the same length')
978978

979979
if isinstance(tuples, (np.ndarray, Index)):
980980
if isinstance(tuples, Index):

0 commit comments

Comments
 (0)