From 20cbcbf52ba69618dce77d88881d198f4d1929b9 Mon Sep 17 00:00:00 2001 From: Boris Arzentar Date: Thu, 13 Feb 2025 14:41:11 +0100 Subject: [PATCH] fix: ruff error --- cognee/modules/retrieval/code_graph_retrieval.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cognee/modules/retrieval/code_graph_retrieval.py b/cognee/modules/retrieval/code_graph_retrieval.py index 0647a7ce3..8328aaf83 100644 --- a/cognee/modules/retrieval/code_graph_retrieval.py +++ b/cognee/modules/retrieval/code_graph_retrieval.py @@ -33,10 +33,10 @@ async def code_graph_retrieval(query: str) -> dict[str, str]: ] return [ - { - "name": file_path, - "description": file_path, - "content": source_code, - } - for file_path, source_code in retrieved_files.items() - ] + { + "name": file_path, + "description": file_path, + "content": source_code, + } + for file_path, source_code in retrieved_files.items() + ]