From 6a0366cb24e7e4f60b0abfa8760d43c4842578a4 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Tue, 18 Feb 2025 09:39:10 +0100 Subject: [PATCH] Fixed indentation bug --- lightrag/kg/postgres_impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/kg/postgres_impl.py b/lightrag/kg/postgres_impl.py index c4f13c62..77bb170a 100644 --- a/lightrag/kg/postgres_impl.py +++ b/lightrag/kg/postgres_impl.py @@ -303,7 +303,7 @@ class PGKVStorage(BaseKVStorage): async def drop(self) -> None: """Drop the storage""" - drop_sql = SQL_TEMPLATES["DROP_ALL"] + drop_sql = SQL_TEMPLATES["DROP_ALL"] await self.db.execute(drop_sql) @final