Reset seconds and microseconds to 0.
(self)
| 799 | return self.set(microsecond=999999) |
| 800 | |
| 801 | def _start_of_minute(self) -> Self: |
| 802 | """ |
| 803 | Reset seconds and microseconds to 0. |
| 804 | """ |
| 805 | return self.set(second=0, microsecond=0) |
| 806 | |
| 807 | def _end_of_minute(self) -> Self: |
| 808 | """ |