We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1413999 commit a51e915Copy full SHA for a51e915
pandas/util/_decorators.py
@@ -304,7 +304,7 @@ def wrapper(*args, **kwargs):
304
num_allow_args = allow_args
305
if len(args) > num_allow_args:
306
msg = (
307
- "After Pandas version {version} all arguments of {funcname}"
+ "After pandas version {version} all arguments of {funcname}"
308
"{except_args} will be keyword-only"
309
).format(version=version, funcname=func.__name__, except_args=arguments)
310
warnings.warn(msg, FutureWarning, stacklevel=stacklevel)
0 commit comments