@@ -116,7 +116,7 @@ def __deepcopy__(self, memodict={}):
116116
117117 @property
118118 @abstractmethod
119- def __dict__ (self ):
119+ def __dict__ (self ): # type: ignore[override]
120120 return dict () # pragma: no cover (abc)
121121
122122 def __eq__ (self , other ) -> bool :
@@ -422,7 +422,7 @@ def __sub__(self: _F, other: float) -> _F:
422422 def __mul__ (self : _F , other : float ) -> _F :
423423 return self .__class__ (float (self ).__mul__ (other ))
424424
425- def __floordiv__ (self : _F , other : float ) -> _F : # type: ignore[override]
425+ def __floordiv__ (self : _F , other : float ) -> _F :
426426 return self .__class__ (float (self ).__floordiv__ (other ))
427427
428428 def __truediv__ (self : _F , other : float ) -> _F :
@@ -446,7 +446,7 @@ def __rsub__(self: _F, other: float) -> _F:
446446 def __rmul__ (self : _F , other : float ) -> _F :
447447 return self .__class__ (float (self ).__rmul__ (other ))
448448
449- def __rfloordiv__ (self : _F , other : float ) -> _F : # type: ignore[override]
449+ def __rfloordiv__ (self : _F , other : float ) -> _F :
450450 return self .__class__ (float (self ).__rfloordiv__ (other ))
451451
452452 def __rtruediv__ (self : _F , other : float ) -> _F :
@@ -538,8 +538,8 @@ def __float__(self) -> float:
538538 def __abs__ (self : _F ) -> _F :
539539 return self .__class__ (float (self ).__abs__ ())
540540
541- def __hash__ (self ) -> int :
542- return float (self ).__hash__ ()
541+ # def __hash__(self) -> int:
542+ # return float(self).__hash__()
543543
544544 def __repr__ (self ) -> str :
545545 return str (self )
0 commit comments