Spaces:
Sleeping
Sleeping
| """Date utility helpers shared across routers.""" | |
| from datetime import date, timedelta | |
| def monday_of_week(d: date) -> date: | |
| """Return the Monday of the week containing *d*.""" | |
| return d - timedelta(days=d.weekday()) | |