From da59cc89d841434bdb736c7605284c90f0ad8be8 Mon Sep 17 00:00:00 2001 From: zrguo <49157727+LarFii@users.noreply.github.com> Date: Sun, 9 Mar 2025 00:51:14 +0800 Subject: [PATCH] fix linting --- lightrag/kg/qdrant_impl.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lightrag/kg/qdrant_impl.py b/lightrag/kg/qdrant_impl.py index 131f8179..53a59c2f 100644 --- a/lightrag/kg/qdrant_impl.py +++ b/lightrag/kg/qdrant_impl.py @@ -263,9 +263,7 @@ class QdrantVectorDBStorage(BaseVectorStorage): matching_records = results[0] # Format the results to match expected return format - formatted_results = [ - {**point.payload} for point in matching_records - ] + formatted_results = [{**point.payload} for point in matching_records] logger.debug( f"Found {len(formatted_results)} records with prefix '{prefix}'"