Round datetime down to midnight.
(date)
| 848 | |
| 849 | |
| 850 | def normalize_date(date): |
| 851 | """Round datetime down to midnight.""" |
| 852 | return date.replace(hour=0, minute=0, second=0, microsecond=0) |
| 853 | |
| 854 | |
| 855 | def _get_normalized_cfdate(date, calendar, normalize): |
no test coverage detected
searching dependent graphs…