(self, other: timedelta)
| 322 | __radd__ = __add__ # type: ignore[assignment] |
| 323 | |
| 324 | def __sub__(self, other: timedelta) -> Duration: # type: ignore[override] |
| 325 | return self.as_duration().__sub__(other) |
| 326 | |
| 327 | def __neg__(self) -> Self: |
| 328 | return self.__class__(self.end, self.start, self._absolute) |
nothing calls this directly
no test coverage detected