Ignore override

This commit is contained in:
Andrew Murray 2025-03-03 14:48:00 +11:00
parent 2d97521aa3
commit d6272297fc

View File

@ -404,7 +404,7 @@ class IFDRational(Rational):
def __repr__(self) -> str:
return str(float(self._val))
def __hash__(self) -> int:
def __hash__(self) -> int: # type: ignore[override]
return self._val.__hash__()
def __eq__(self, other: object) -> bool: