diff options
-rw-r--r-- | numpy/core/numeric.pyi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.pyi b/numpy/core/numeric.pyi index 6b9ef4b20..f57951434 100644 --- a/numpy/core/numeric.pyi +++ b/numpy/core/numeric.pyi @@ -238,6 +238,6 @@ def isclose( equal_nan: bool = ..., ) -> Any: ... -def array_equal(a1: ArrayLike, a2: ArrayLike) -> bool: ... +def array_equal(a1: ArrayLike, a2: ArrayLike, equal_nan: bool = ...) -> bool: ... def array_equiv(a1: ArrayLike, a2: ArrayLike) -> bool: ... |