All Tick subclasses must implement an as_timedelta method.
(self)
| 230 | return type(self)(n=other * self.n) |
| 231 | |
| 232 | def as_timedelta(self) -> timedelta: |
| 233 | """All Tick subclasses must implement an as_timedelta method.""" |
| 234 | raise NotImplementedError |
| 235 | |
| 236 | |
| 237 | def _get_day_of_month(other, day_option: DayOption) -> int: |
no outgoing calls