| 635 | |
| 636 | |
| 637 | class Minute(Tick): |
| 638 | _freq = "min" |
| 639 | |
| 640 | def as_timedelta(self) -> timedelta: |
| 641 | return timedelta(minutes=self.n) |
| 642 | |
| 643 | def __apply__(self, other): |
| 644 | return other + self.as_timedelta() |
| 645 | |
| 646 | |
| 647 | class Second(Tick): |
no outgoing calls
searching dependent graphs…