Skip to content

Commit 24c95d8

Browse files
Add typing Tuple format to suffixes field
Co-authored-by: Simon Hawkins <simonjayhawkins@gmail.com>
1 parent cf4168a commit 24c95d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/reshape/merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,7 @@ def _validate_operand(obj: FrameOrSeries) -> "DataFrame":
20632063
)
20642064

20652065

2066-
def _items_overlap_with_suffix(left: Index, right: Index, suffixes):
2066+
def _items_overlap_with_suffix(left: Index, right: Index, suffixes: Tuple[str, str]):
20672067
"""
20682068
Suffixes type validation.
20692069

0 commit comments

Comments
 (0)