summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-06-10 08:00:40 -0600
committerGitHub <noreply@github.com>2021-06-10 08:00:40 -0600
commit787204533d6461a19bc2e44f656f8a04601e5de2 (patch)
treec72aaeaafc868e0d543b6811ecfed15848cab8f2 /numpy
parent04ab04d93d4d7a4d241fe0ceb725436a8b6c8c2e (diff)
parentb3a2f97e217897f692de3db5f1ed675a0da79fd4 (diff)
downloadnumpy-787204533d6461a19bc2e44f656f8a04601e5de2.tar.gz
Merge pull request #19212 from BvB93/unwrap
MAINT: Add annotations for the missing `period` parameter to `np.unwrap`
Diffstat (limited to 'numpy')
-rw-r--r--numpy/lib/function_base.pyi2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.pyi b/numpy/lib/function_base.pyi
index da24ab21d..69c615c9c 100644
--- a/numpy/lib/function_base.pyi
+++ b/numpy/lib/function_base.pyi
@@ -30,7 +30,7 @@ def gradient(f, *varargs, axis=..., edge_order=...): ...
def diff(a, n=..., axis=..., prepend = ..., append = ...): ...
def interp(x, xp, fp, left=..., right=..., period=...): ...
def angle(z, deg=...): ...
-def unwrap(p, discont = ..., axis=...): ...
+def unwrap(p, discont = ..., axis=..., *, period=...): ...
def sort_complex(a): ...
def trim_zeros(filt, trim=...): ...
def extract(condition, arr): ...