Reset the date to the first day of the year.
(self)
| 392 | return self.set(self.year, self.month, self.days_in_month) |
| 393 | |
| 394 | def _start_of_year(self) -> Self: |
| 395 | """ |
| 396 | Reset the date to the first day of the year. |
| 397 | """ |
| 398 | return self.set(self.year, 1, 1) |
| 399 | |
| 400 | def _end_of_year(self) -> Self: |
| 401 | """ |