From 95a1acc3c91fb55c987d4bc45061d195b165d8f9 Mon Sep 17 00:00:00 2001 From: Stephen Adamson Date: Tue, 4 Nov 2025 22:38:40 +0000 Subject: [PATCH] fix comment indentation --- mcp_codebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp_codebase.py b/mcp_codebase.py index 8c07329..61d64e1 100644 --- a/mcp_codebase.py +++ b/mcp_codebase.py @@ -1492,7 +1492,7 @@ def hybrid_search(query: str, k: int = 30) -> List[Tuple[str, Dict[str, Any], fl # Sort by fused score descending sorted_items = sorted(fused.items(), key=lambda x: x[1], reverse=True) - # Build accurate mapping from document text to its true metadata + # Build accurate mapping from document text to its true metadata text_to_meta = {text: meta for text, meta in zip(bm25_corpus, chunks_metadata)} results = []