@@ -5841,13 +5841,13 @@ class timedelta64(
5841
5841
@overload
5842
5842
def __mul__ (self , x : int | integer | bool_ , / ) -> Self : ...
5843
5843
@overload
5844
- def __mul__ (self , x : _nt .JustFloat | floating | _nt . Just [ inexact ] , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5844
+ def __mul__ (self , x : _nt .JustFloat | floating , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5845
5845
5846
5846
#
5847
5847
@overload
5848
5848
def __rmul__ (self , x : int | integer | bool_ , / ) -> Self : ...
5849
5849
@overload
5850
- def __rmul__ (self , x : _nt .JustFloat | floating | _nt . Just [ inexact ] , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5850
+ def __rmul__ (self , x : _nt .JustFloat | floating , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5851
5851
5852
5852
#
5853
5853
@overload
@@ -5881,7 +5881,7 @@ class timedelta64(
5881
5881
@overload
5882
5882
def __truediv__ (self , b : _nt .JustInt | integer , / ) -> Self : ...
5883
5883
@overload
5884
- def __truediv__ (self , b : _nt .JustFloat | floating | _nt . Just [ inexact ] , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5884
+ def __truediv__ (self , b : _nt .JustFloat | floating , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5885
5885
@overload
5886
5886
def __truediv__ (self : timedelta64 [dt .timedelta ], b : dt .timedelta , / ) -> float : ...
5887
5887
@@ -5897,7 +5897,7 @@ class timedelta64(
5897
5897
@overload
5898
5898
def __floordiv__ (self , b : _nt .JustInt | integer , / ) -> Self : ...
5899
5899
@overload
5900
- def __floordiv__ (self , b : _nt .JustFloat | floating | _nt . Just [ inexact ] , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5900
+ def __floordiv__ (self , b : _nt .JustFloat | floating , / ) -> timedelta64 [_TD64ItemT_co | None ]: ...
5901
5901
@overload
5902
5902
def __floordiv__ (self : timedelta64 [dt .timedelta ], b : dt .timedelta , / ) -> int : ...
5903
5903
0 commit comments