Reset the date to the first day of the month.
(self)
| 380 | return self |
| 381 | |
| 382 | def _start_of_month(self) -> Self: |
| 383 | """ |
| 384 | Reset the date to the first day of the month. |
| 385 | """ |
| 386 | return self.set(self.year, self.month, 1) |
| 387 | |
| 388 | def _end_of_month(self) -> Self: |
| 389 | """ |