mils2004 commited on
Commit
387b658
·
1 Parent(s): 4a67bd8

fixed another lint issue

Browse files
Files changed (1) hide show
  1. rag_pipeline/retrieval/bm25.py +0 -1
rag_pipeline/retrieval/bm25.py CHANGED
@@ -3,7 +3,6 @@
3
  import bm25s
4
  from rag_pipeline.config import BM25_INDEX_PATH, TOP_K_RETRIEVE
5
 
6
- from typing import Optional
7
  _retriever = None
8
  _all_chunks: list[dict] =[]
9
  def create_bm25(all_chunks: list[dict]) -> None:
 
3
  import bm25s
4
  from rag_pipeline.config import BM25_INDEX_PATH, TOP_K_RETRIEVE
5
 
 
6
  _retriever = None
7
  _all_chunks: list[dict] =[]
8
  def create_bm25(all_chunks: list[dict]) -> None: