| 655 | |
| 656 | |
| 657 | class Millisecond(Tick): |
| 658 | _freq = "ms" |
| 659 | |
| 660 | def as_timedelta(self) -> timedelta: |
| 661 | return timedelta(milliseconds=self.n) |
| 662 | |
| 663 | def __apply__(self, other): |
| 664 | return other + self.as_timedelta() |
| 665 | |
| 666 | |
| 667 | class Microsecond(Tick): |
no outgoing calls
no test coverage detected
searching dependent graphs…