We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7000b89 commit 4807905Copy full SHA for 4807905
pandas/util/_decorators.py
@@ -140,8 +140,8 @@ def wrapper(*args, **kwargs):
140
if new_arg_name is None and old_arg_value is not None:
141
msg = (
142
"the '{old_name}' keyword is deprecated and will be "
143
- "removed in a future version "
144
- "please takes steps to stop use of '{old_name}'"
+ "removed in a future version. "
+ "Please take steps to stop the use of '{old_name}'"
145
).format(old_name=old_arg_name)
146
warnings.warn(msg, FutureWarning, stacklevel=stacklevel)
147
kwargs[old_arg_name] = old_arg_value
0 commit comments