Reset the time to 00:00:00.
(self)
| 823 | return self.set(minute=59, second=59, microsecond=999999) |
| 824 | |
| 825 | def _start_of_day(self) -> Self: |
| 826 | """ |
| 827 | Reset the time to 00:00:00. |
| 828 | """ |
| 829 | return self.at(0, 0, 0, 0) |
| 830 | |
| 831 | def _end_of_day(self) -> Self: |
| 832 | """ |