Reset the date to the last day of the month.
(self)
| 386 | return self.set(self.year, self.month, 1) |
| 387 | |
| 388 | def _end_of_month(self) -> Self: |
| 389 | """ |
| 390 | Reset the date to the last day of the month. |
| 391 | """ |
| 392 | return self.set(self.year, self.month, self.days_in_month) |
| 393 | |
| 394 | def _start_of_year(self) -> Self: |
| 395 | """ |