From 05ee4d96f60b5b4efefc56a8d46f3e0263b8891d Mon Sep 17 00:00:00 2001 From: husbando_enjoyer Date: Sun, 15 Feb 2026 19:28:08 +0100 Subject: [PATCH] Fix failure --- backend/app/services/builds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/services/builds.py b/backend/app/services/builds.py index 1affdec..93da222 100644 --- a/backend/app/services/builds.py +++ b/backend/app/services/builds.py @@ -45,7 +45,7 @@ def normalize_build(build: Dict) -> Dict: "duration_seconds": build.get("duration", 0) // 1000, "url": build.get("url"), "commits": commits, - }; + } def _auth_header() -> Dict[str, str]: