From ac7e275932c8d25fab169c4a5458200fb575c968 Mon Sep 17 00:00:00 2001 From: yangdx Date: Wed, 2 Apr 2025 18:36:05 +0800 Subject: [PATCH] Fix linting --- lightrag/lightrag.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lightrag/lightrag.py b/lightrag/lightrag.py index 201bd6bf..50ee079a 100644 --- a/lightrag/lightrag.py +++ b/lightrag/lightrag.py @@ -523,7 +523,9 @@ class LightRAG: KnowledgeGraph: Knowledge graph containing nodes and edges """ - return await self.chunk_entity_relation_graph.get_knowledge_graph(node_label, max_depth, max_nodes) + return await self.chunk_entity_relation_graph.get_knowledge_graph( + node_label, max_depth, max_nodes + ) def _get_storage_class(self, storage_name: str) -> Callable[..., Any]: import_path = STORAGES[storage_name]