1
1
from collections .abc import Sequence
2
2
from typing import (
3
+ Any ,
3
4
TypeAlias ,
4
5
overload ,
5
6
)
@@ -58,8 +59,8 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
58
59
def ndim (self ) -> int : ...
59
60
@property
60
61
def shape (self ): ...
61
- def reshape (self , * args , ** kwargs ): ...
62
- def ravel (self , * args , ** kwargs ): ... # pyrefly: ignore
62
+ def reshape (self , * args : Any , ** kwargs : Any ): ...
63
+ def ravel (self , * args : Any , ** kwargs : Any ): ... # pyrefly: ignore
63
64
def __iter__ (self ): ...
64
65
@property
65
66
def asi8 (self ) -> np .ndarray : ...
@@ -84,7 +85,7 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
84
85
def unique (self ): ...
85
86
def copy (self ): ...
86
87
def shift (self , periods : int = 1 , fill_value = ..., axis : int = ...): ...
87
- def repeat (self , repeats , * args , ** kwargs ): ... # pyrefly: ignore
88
+ def repeat (self , repeats , * args : Any , ** kwargs : Any ): ... # pyrefly: ignore
88
89
def value_counts (self , dropna : bool = True ): ...
89
90
def map (self , mapper ): ...
90
91
def isna (self ): ...
@@ -108,6 +109,6 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
108
109
def __rsub__ (self , other ): ...
109
110
def __iadd__ (self , other ): ...
110
111
def __isub__ (self , other ): ...
111
- def min (self , * , axis = ..., skipna : bool = ..., ** kwargs ): ...
112
- def max (self , * , axis = ..., skipna : bool = ..., ** kwargs ): ...
112
+ def min (self , * , axis = ..., skipna : bool = ..., ** kwargs : Any ): ...
113
+ def max (self , * , axis = ..., skipna : bool = ..., ** kwargs : Any ): ...
113
114
def mean (self , * , skipna : bool = ...): ...
0 commit comments