| 645 | |
| 646 | |
| 647 | class Second(Tick): |
| 648 | _freq = "s" |
| 649 | |
| 650 | def as_timedelta(self) -> timedelta: |
| 651 | return timedelta(seconds=self.n) |
| 652 | |
| 653 | def __apply__(self, other): |
| 654 | return other + self.as_timedelta() |
| 655 | |
| 656 | |
| 657 | class Millisecond(Tick): |
no outgoing calls
searching dependent graphs…