From 677013e9d57ab0aa379154c27adff1c72ce8f474 Mon Sep 17 00:00:00 2001 From: Yannick Stephan Date: Sat, 8 Feb 2025 23:24:00 +0100 Subject: [PATCH] cleaned code --- lightrag/base.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lightrag/base.py b/lightrag/base.py index 23acb7ad..2b655549 100644 --- a/lightrag/base.py +++ b/lightrag/base.py @@ -104,9 +104,7 @@ class BaseKVStorage(StorageNameSpace): async def drop(self) -> None: raise NotImplementedError - async def get_by_status_and_ids( - self, status: str - ) -> list[dict[str, Any]]: + async def get_by_status_and_ids(self, status: str) -> Union[list[dict[str, Any]], None]: raise NotImplementedError @dataclass