From e1d60ab2c69709d19011a2f739562ae68ceb3feb Mon Sep 17 00:00:00 2001 From: majdyz Date: Wed, 15 Apr 2026 20:02:24 +0700 Subject: [PATCH] style(backend/copilot): reformat prompt_cache_test.py per black --- autogpt_platform/backend/backend/copilot/prompt_cache_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/autogpt_platform/backend/backend/copilot/prompt_cache_test.py b/autogpt_platform/backend/backend/copilot/prompt_cache_test.py index 794652b4fc..213fbf9316 100644 --- a/autogpt_platform/backend/backend/copilot/prompt_cache_test.py +++ b/autogpt_platform/backend/backend/copilot/prompt_cache_test.py @@ -19,9 +19,7 @@ class TestBuildSystemPrompt: @pytest.mark.asyncio async def test_no_user_id_returns_static_prompt(self): """When user_id is None, no DB lookup happens and the static prompt is returned.""" - with ( - patch(f"{_SVC}._is_langfuse_configured", return_value=False), - ): + with (patch(f"{_SVC}._is_langfuse_configured", return_value=False),): from backend.copilot.service import ( _CACHEABLE_SYSTEM_PROMPT, _build_system_prompt,