From 30a31889d01c232122fce069197156f9da3aadbc Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Fri, 17 Oct 2025 10:30:35 +0200 Subject: [PATCH] ruff format --- .../tests/unit/modules/retrieval/conversation_history_test.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cognee/tests/unit/modules/retrieval/conversation_history_test.py b/cognee/tests/unit/modules/retrieval/conversation_history_test.py index c95fe8e26..46cdc1b8b 100644 --- a/cognee/tests/unit/modules/retrieval/conversation_history_test.py +++ b/cognee/tests/unit/modules/retrieval/conversation_history_test.py @@ -121,9 +121,7 @@ class TestConversationHistoryUtils: call_kwargs = mock_cache.add_qa.call_args.kwargs assert call_kwargs["question"] == "What is Python?" assert call_kwargs["context"] == "Python is a programming language" - assert ( - call_kwargs["answer"] == "Python is a high-level programming language" - ) + assert call_kwargs["answer"] == "Python is a high-level programming language" assert call_kwargs["session_id"] == "my_session" @pytest.mark.asyncio