From 93416cccc20f5924381b15c9f7e4cb3212379f7f Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Wed, 8 Oct 2025 10:24:42 +0200 Subject: [PATCH] linting fix --- cognee/infrastructure/databases/graph/kuzu/adapter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cognee/infrastructure/databases/graph/kuzu/adapter.py b/cognee/infrastructure/databases/graph/kuzu/adapter.py index bb5308859..4d6db2165 100644 --- a/cognee/infrastructure/databases/graph/kuzu/adapter.py +++ b/cognee/infrastructure/databases/graph/kuzu/adapter.py @@ -271,13 +271,13 @@ class KuzuAdapter(GraphDBInterface): del self.db self.db = None self._is_closed = True - logger.info(f"Kuzu database closed successfully") + logger.info("Kuzu database closed successfully") def reopen(self): if self._is_closed: self._is_closed = False self._initialize_connection() - logger.info(f"Kuzu database re-opened successfully") + logger.info("Kuzu database re-opened successfully") @asynccontextmanager async def get_session(self):