Skip to content

Commit 03cbbd7

Browse files
committed
Fix function signature
1 parent e01171e commit 03cbbd7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pandas-stubs/_testing/__init__.pyi

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ from typing import (
66
overload,
77
)
88

9+
import numpy as np
910
from pandas import (
1011
DataFrame,
1112
Index,
@@ -42,7 +43,14 @@ def assert_numpy_array_equal(
4243
obj: str = ...,
4344
): ...
4445
def assert_extension_array_equal(
45-
left, right, check_dtype: bool = ..., check_exact: bool = ...
46+
left,
47+
right,
48+
check_dtype: bool = ...,
49+
index_values: Index | np.ndarray | None = ...,
50+
check_exact: bool = ...,
51+
rtol: float = ...,
52+
atol: float = ...,
53+
obj: str = ...,
4654
) -> None: ...
4755
@overload
4856
def assert_series_equal(

0 commit comments

Comments
 (0)