(self, other: int | float)
| 328 | return self.__class__(self.end, self.start, self._absolute) |
| 329 | |
| 330 | def __mul__(self, other: int | float) -> Duration: # type: ignore[override] |
| 331 | return self.as_duration().__mul__(other) |
| 332 | |
| 333 | __rmul__ = __mul__ # type: ignore[assignment] |
| 334 |
nothing calls this directly
no test coverage detected