(self, other: timedelta)
| 317 | return self.start <= item <= self.end |
| 318 | |
| 319 | def __add__(self, other: timedelta) -> Duration: # type: ignore[override] |
| 320 | return self.as_duration().__add__(other) |
| 321 | |
| 322 | __radd__ = __add__ # type: ignore[assignment] |
| 323 |
nothing calls this directly
no test coverage detected