Skip to content

Commit 61f0c5c

Browse files
alanbatojreback
authored andcommitted
Change "pls" to "please" in error message (#16947)
1 parent 80e40f8 commit 61f0c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3359,7 +3359,7 @@ def sort_index(self, axis=0, level=None, ascending=True, inplace=False,
33593359
inplace = validate_bool_kwarg(inplace, 'inplace')
33603360
# 10726
33613361
if by is not None:
3362-
warnings.warn("by argument to sort_index is deprecated, pls use "
3362+
warnings.warn("by argument to sort_index is deprecated, please use "
33633363
".sort_values(by=...)", FutureWarning, stacklevel=2)
33643364
if level is not None:
33653365
raise ValueError("unable to simultaneously sort by and level")

0 commit comments

Comments
 (0)