fix: ruff error

This commit is contained in:
Boris Arzentar 2025-02-13 14:41:11 +01:00
parent 67c8edb853
commit 20cbcbf52b

View file

@ -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()
]