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}'"