(self)
| 180 | return None |
| 181 | |
| 182 | def _get_annual_rule(self): |
| 183 | if len(self.year_deltas) > 1: |
| 184 | return None |
| 185 | |
| 186 | if len(np.unique(self.index.month)) > 1: |
| 187 | return None |
| 188 | |
| 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: |
no test coverage detected