@@ -55,39 +55,39 @@ def asof_join_backward_on_X_by_Y(
55
55
left_by_values : np .ndarray , # by_t[:]
56
56
right_by_values : np .ndarray , # by_t[:]
57
57
allow_exact_matches : bool = ...,
58
- tolerance = ...,
58
+ tolerance : np . number | int | float | None = ...,
59
59
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
60
60
def asof_join_forward_on_X_by_Y (
61
61
left_values : np .ndarray , # asof_t[:]
62
62
right_values : np .ndarray , # asof_t[:]
63
63
left_by_values : np .ndarray , # by_t[:]
64
64
right_by_values : np .ndarray , # by_t[:]
65
65
allow_exact_matches : bool = ...,
66
- tolerance = ...,
66
+ tolerance : np . number | int | float | None = ...,
67
67
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
68
68
def asof_join_nearest_on_X_by_Y (
69
69
left_values : np .ndarray , # asof_t[:]
70
70
right_values : np .ndarray , # asof_t[:]
71
71
left_by_values : np .ndarray , # by_t[:]
72
72
right_by_values : np .ndarray , # by_t[:]
73
73
allow_exact_matches : bool = ...,
74
- tolerance = ...,
74
+ tolerance : np . number | int | float | None = ...,
75
75
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
76
76
def asof_join_backward (
77
77
left_values : np .ndarray , # asof_t[:]
78
78
right_values : np .ndarray , # asof_t[:]
79
79
allow_exact_matches : bool = ...,
80
- tolerance = ...,
80
+ tolerance : np . number | int | float | None = ...,
81
81
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
82
82
def asof_join_forward (
83
83
left_values : np .ndarray , # asof_t[:]
84
84
right_values : np .ndarray , # asof_t[:]
85
85
allow_exact_matches : bool = ...,
86
- tolerance = ...,
86
+ tolerance : np . number | int | float | None = ...,
87
87
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
88
88
def asof_join_nearest (
89
89
left_values : np .ndarray , # asof_t[:]
90
90
right_values : np .ndarray , # asof_t[:]
91
91
allow_exact_matches : bool = ...,
92
- tolerance = ...,
92
+ tolerance : np . number | int | float | None = ...,
93
93
) -> tuple [npt .NDArray [np .intp ], npt .NDArray [np .intp ]]: ...
0 commit comments