(self)
| 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: |
| 202 | return None |
| 203 | |
| 204 | return {"cs": "MS", "ce": "ME"}.get(month_anchor_check(self.index)) |
| 205 | |
| 206 | @property |
| 207 | def deltas(self): |
no test coverage detected