fix csv format error

This commit is contained in:
2026-07-13 16:17:36 -04:00
parent d2e0e7bdcb
commit a6cc7c7fd6
6 changed files with 268 additions and 11 deletions
+1
View File
@@ -468,6 +468,7 @@ def get_schedule_week(start: str | None = None) -> dict[str, Any]:
return {
"start_date": week_start,
"items": [_serialize_schedule_row(row) for row in rows],
"total_scheduled_tests": len(all_rows),
"completion_date": completion_date,
"windows": _build_schedule_windows(week_start_date, all_rows, holiday_dates),
}