diff options
| author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-11-26 12:14:46 +0100 |
|---|---|---|
| committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-11-26 12:24:16 +0100 |
| commit | 16e9d7c313e093f5069e87b943f7958bf00e3727 (patch) | |
| tree | a9a0643e2cca6804787ffae33c29e73f85223656 | |
| parent | dcbbaa3c187491d2abcea2a53f1328af88fc337c (diff) | |
| download | numpy-16e9d7c313e093f5069e87b943f7958bf00e3727.tar.gz | |
MAINT: Remove a redundant overload
| -rw-r--r-- | numpy/__init__.pyi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/__init__.pyi b/numpy/__init__.pyi index e01df7c90..7372b7d6e 100644 --- a/numpy/__init__.pyi +++ b/numpy/__init__.pyi @@ -2445,8 +2445,7 @@ class ndarray(_ArrayOrScalarCommon, Generic[_ShapeType, _DType_co]): def __ior__(self: NDArray[signedinteger[_NBit1]], other: _ArrayLikeInt_co) -> NDArray[signedinteger[_NBit1]]: ... @overload def __ior__(self: NDArray[object_], other: Any) -> NDArray[object_]: ... - @overload - def __ior__(self: NDArray[_ScalarType], other: _RecursiveSequence) -> NDArray[_ScalarType]: ... + @overload def __dlpack__(self: NDArray[number[Any]], *, stream: None = ...) -> _PyCapsule: ... @overload |
