| 625 | |
| 626 | |
| 627 | class Hour(Tick): |
| 628 | _freq = "h" |
| 629 | |
| 630 | def as_timedelta(self) -> timedelta: |
| 631 | return timedelta(hours=self.n) |
| 632 | |
| 633 | def __apply__(self, other): |
| 634 | return other + self.as_timedelta() |
| 635 | |
| 636 | |
| 637 | class Minute(Tick): |
no outgoing calls
no test coverage detected
searching dependent graphs…