diff options
Diffstat (limited to 'numpy/ma/core.pyi')
-rw-r--r-- | numpy/ma/core.pyi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/core.pyi b/numpy/ma/core.pyi index e7e3f1f36..bc1f45a8d 100644 --- a/numpy/ma/core.pyi +++ b/numpy/ma/core.pyi @@ -270,8 +270,8 @@ class MaskedArray(ndarray[_ShapeType, _DType_co]): def std(self, axis=..., dtype=..., out=..., ddof=..., keepdims=...): ... def round(self, decimals=..., out=...): ... def argsort(self, axis=..., kind=..., order=..., endwith=..., fill_value=...): ... - def argmin(self, axis=..., fill_value=..., out=...): ... - def argmax(self, axis=..., fill_value=..., out=...): ... + def argmin(self, axis=..., fill_value=..., out=..., *, keepdims=...): ... + def argmax(self, axis=..., fill_value=..., out=..., *, keepdims=...): ... def sort(self, axis=..., kind=..., order=..., endwith=..., fill_value=...): ... def min(self, axis=..., out=..., fill_value=..., keepdims=...): ... # NOTE: deprecated |