From 9ecba59d815c1a281855da9cf27ff1d358f2ccee Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 22 Jun 2023 13:48:21 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20chore(types.py):=20remove=20unus?= =?UTF-8?q?ed=20=5Fbuilt=5Fobject=5Frepr=20method=20from=20VectorStoreVert?= =?UTF-8?q?ex=20The=20=5Fbuilt=5Fobject=5Frepr=20method=20was=20not=20bein?= =?UTF-8?q?g=20used=20and=20was=20therefore=20removed=20to=20improve=20cod?= =?UTF-8?q?e=20readability=20and=20maintainability.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/graph/vertex/types.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/backend/langflow/graph/vertex/types.py b/src/backend/langflow/graph/vertex/types.py index 4eb20f416..b6a8f9a91 100644 --- a/src/backend/langflow/graph/vertex/types.py +++ b/src/backend/langflow/graph/vertex/types.py @@ -106,9 +106,6 @@ class VectorStoreVertex(Vertex): def __init__(self, data: Dict): super().__init__(data, base_type="vectorstores") - def _built_object_repr(self): - return "Vector stores can take time to build. It will build on the first query." - class MemoryVertex(Vertex): def __init__(self, data: Dict):