From 43f6fcea6cde504ed8aa232c5992dc8262880838 Mon Sep 17 00:00:00 2001 From: yangdx Date: Fri, 12 Sep 2025 17:00:53 +0800 Subject: [PATCH] Fix linting --- lightrag/kg/qdrant_impl.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lightrag/kg/qdrant_impl.py b/lightrag/kg/qdrant_impl.py index edad8200..de1d07e7 100644 --- a/lightrag/kg/qdrant_impl.py +++ b/lightrag/kg/qdrant_impl.py @@ -83,7 +83,6 @@ class QdrantVectorDBStorage(BaseVectorStorage): if not exists: client.create_collection(collection_name, **kwargs) - def __post_init__(self): # Check for QDRANT_WORKSPACE environment variable first (higher priority) # This allows administrators to force a specific workspace for all Qdrant storage instances @@ -493,7 +492,6 @@ class QdrantVectorDBStorage(BaseVectorStorage): if exists: self._client.delete_collection(self.final_namespace) - # Recreate the collection QdrantVectorDBStorage.create_collection_if_not_exist( self._client,