11from collections .abc import Sequence
22from typing import (
3+ Any ,
34 TypeAlias ,
45 overload ,
56)
@@ -58,8 +59,8 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
5859 def ndim (self ) -> int : ...
5960 @property
6061 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
6364 def __iter__ (self ): ...
6465 @property
6566 def asi8 (self ) -> np .ndarray : ...
@@ -84,7 +85,7 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
8485 def unique (self ): ...
8586 def copy (self ): ...
8687 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
8889 def value_counts (self , dropna : bool = True ): ...
8990 def map (self , mapper ): ...
9091 def isna (self ): ...
@@ -108,6 +109,6 @@ class DatetimeLikeArrayMixin(ExtensionOpsMixin, ExtensionArray):
108109 def __rsub__ (self , other ): ...
109110 def __iadd__ (self , other ): ...
110111 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 ): ...
113114 def mean (self , * , skipna : bool = ...): ...
0 commit comments