(self, other: object)
| 490 | |
| 491 | @override |
| 492 | def __eq__(self, other: object) -> bool: |
| 493 | if not isinstance(other, Size): |
| 494 | return NotImplemented |
| 495 | |
| 496 | return self._normalize() == other._normalize() |
| 497 | |
| 498 | @override |
| 499 | def __ne__(self, other: object) -> bool: |
nothing calls this directly
no test coverage detected