Skip to content

Commit 91b3613

Browse files
Fixed line too long error
1 parent 1702f50 commit 91b3613

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/indexes/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4429,8 +4429,8 @@ def join(
44294429
"""
44304430
if not isinstance(other, Index):
44314431
warnings.warn(
4432-
f"Passing {type(other).__name__} to {type(self).__name__}.join is deprecated "
4433-
"and will raise in a future version. "
4432+
f"Passing {type(other).__name__} to {type(self).__name__}.join"
4433+
"is deprecated and will raise in a future version. "
44344434
"Pass an Index instead.",
44354435
Pandas4Warning,
44364436
stacklevel=find_stack_level(),

0 commit comments

Comments
 (0)