From ac0199e3b89cdd3af641b2a88688e060f2a48210 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Sun, 15 Feb 2026 06:09:28 +0000 Subject: [PATCH] style: fix flake8 blank lines --- backend/app/services/github/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/services/github/client.py b/backend/app/services/github/client.py index 1cbf46e1..c36dcfa6 100644 --- a/backend/app/services/github/client.py +++ b/backend/app/services/github/client.py @@ -34,6 +34,7 @@ def _safe_error_detail(resp: httpx.Response) -> str: return text return f"{text[: _ERROR_DETAIL_MAX_CHARS - 3]}..." + GITHUB_API_BASE_URL = "https://api.github.com" GITHUB_API_VERSION = "2022-11-28"