(self)
| 189 | return {"cs": "YS", "ce": "YE"}.get(month_anchor_check(self.index)) |
| 190 | |
| 191 | def _get_quartely_rule(self): |
| 192 | if len(self.month_deltas) > 1: |
| 193 | return None |
| 194 | |
| 195 | if self.month_deltas[0] % 3 != 0: |
| 196 | return None |
| 197 | |
| 198 | return {"cs": "QS", "ce": "QE"}.get(month_anchor_check(self.index)) |
| 199 | |
| 200 | def _get_monthly_rule(self): |
| 201 | if len(self.month_deltas) > 1: |
no test coverage detected