(self, other)
| 192 | return str(self) |
| 193 | |
| 194 | def _get_offset_day(self, other): |
| 195 | # subclass must implement `_day_option`; calling from the base class |
| 196 | # will raise NotImplementedError. |
| 197 | return _get_day_of_month(other, self._day_option) |
| 198 | |
| 199 | |
| 200 | class Tick(BaseCFTimeOffset): |
no test coverage detected