Return hash based on the bytes value.
(self)
| 74 | return NotImplemented |
| 75 | |
| 76 | def __hash__(self) -> int: |
| 77 | """Return hash based on the bytes value.""" |
| 78 | return hash(self.bytes) |
| 79 | |
| 80 | def __lt__(self, other: object) -> bool: |
| 81 | if isinstance(other, ByteSize): |