From 87a13fd3ea09720b9f16e645d2c4bc5e3228b0e7 Mon Sep 17 00:00:00 2001 From: Yannick Stephan Date: Sun, 16 Feb 2025 16:22:28 +0100 Subject: [PATCH] cleaned code --- lightrag/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lightrag/base.py b/lightrag/base.py index 98bdb606..8b98d3aa 100644 --- a/lightrag/base.py +++ b/lightrag/base.py @@ -140,7 +140,6 @@ class BaseKVStorage(StorageNameSpace, ABC): @dataclass class BaseGraphStorage(StorageNameSpace, ABC): embedding_func: EmbeddingFunc - """Check if a node exists in the graph.""" @abstractmethod async def has_node(self, node_id: str) -> bool: @@ -204,7 +203,7 @@ class BaseGraphStorage(StorageNameSpace, ABC): class DocStatus(StrEnum): - """Document processing status enum""" + """Document processing status""" PENDING = "pending" PROCESSING = "processing"