(self, other: object)
| 98 | return NotImplemented |
| 99 | |
| 100 | def __add__(self, other: object) -> ByteSize: |
| 101 | if isinstance(other, ByteSize): |
| 102 | return ByteSize(self.bytes + other.bytes) |
| 103 | return NotImplemented |
| 104 | |
| 105 | def __sub__(self, other: object) -> ByteSize: |
| 106 | if isinstance(other, ByteSize): |