(self, other: timedelta)
| 330 | return rep.replace(", )", ")") |
| 331 | |
| 332 | def __add__(self, other: timedelta) -> Self: |
| 333 | if isinstance(other, timedelta): |
| 334 | return self.__class__(seconds=self.total_seconds() + other.total_seconds()) |
| 335 | |
| 336 | return NotImplemented |
| 337 | |
| 338 | __radd__ = __add__ |
| 339 |
nothing calls this directly
no test coverage detected