| 665 | |
| 666 | |
| 667 | class Microsecond(Tick): |
| 668 | _freq = "us" |
| 669 | |
| 670 | def as_timedelta(self) -> timedelta: |
| 671 | return timedelta(microseconds=self.n) |
| 672 | |
| 673 | def __apply__(self, other): |
| 674 | return other + self.as_timedelta() |
| 675 | |
| 676 | |
| 677 | def _generate_anchored_offsets( |
no outgoing calls
searching dependent graphs…