Get the next valid month.
(self, date)
| 95 | return month |
| 96 | |
| 97 | def get_next_month(self, date): |
| 98 | """Get the next valid month.""" |
| 99 | return _get_next_prev(self, date, is_previous=False, period="month") |
| 100 | |
| 101 | def get_previous_month(self, date): |
| 102 | """Get the previous valid month.""" |
no test coverage detected