Skip to content

Commit 83205ac

Browse files
Fixed missing space issue
1 parent 91b3613 commit 83205ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4429,7 +4429,7 @@ def join(
44294429
"""
44304430
if not isinstance(other, Index):
44314431
warnings.warn(
4432-
f"Passing {type(other).__name__} to {type(self).__name__}.join"
4432+
f"Passing {type(other).__name__} to {type(self).__name__}.join "
44334433
"is deprecated and will raise in a future version. "
44344434
"Pass an Index instead.",
44354435
Pandas4Warning,

0 commit comments

Comments
 (0)