diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2021-11-09 09:48:59 -0600 |
---|---|---|
committer | Sebastian Berg <sebastian@sipsolutions.net> | 2021-11-12 12:12:00 -0600 |
commit | 5bd71fb76c68f41debe3a15fbf316ce6ef7fd795 (patch) | |
tree | 476aa0392cd202d6fe08f589d5ed0d3da35acc5f /numpy/lib/function_base.py | |
parent | 0d5fb819bd6ff8f025db1dfdd0e86e109a64d694 (diff) | |
download | numpy-5bd71fb76c68f41debe3a15fbf316ce6ef7fd795.tar.gz |
DOC: Add ticks to quantile interpolation/method error
Co-authored-by: abel <aoun@cerfacs.fr>
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 7d0f7bb6a..558dfbe34 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -4418,7 +4418,7 @@ def _check_interpolation_as_method(method, interpolation, fname): # sanity check, we assume this basically never happens raise TypeError( "You shall not pass both `method` and `interpolation`!\n" - "(`interpolation` is Deprecated in favor of method)") + "(`interpolation` is Deprecated in favor of `method`)") return interpolation |