fix: clean up two unreachable code (#20773)

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
pull/20784/head
yihong 12 months ago committed by GitHub
parent e6e76852d5
commit 65c7c01d90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -303,7 +303,6 @@ class OracleVector(BaseVector):
return docs return docs
else: else:
return [Document(page_content="", metadata={})] return [Document(page_content="", metadata={})]
return []
def delete(self) -> None: def delete(self) -> None:
with self._get_connection() as conn: with self._get_connection() as conn:

@ -153,8 +153,6 @@ class DatasetMultiRetrieverTool(DatasetRetrieverBaseTool):
return str("\n".join(document_context_list)) return str("\n".join(document_context_list))
return "" return ""
raise RuntimeError("not segments found")
def _retriever( def _retriever(
self, self,
flask_app: Flask, flask_app: Flask,

Loading…
Cancel
Save