From 306260185ad8ca6eed30a1ab4e26dcc76165595e Mon Sep 17 00:00:00 2001 From: Andrew Nguonly Date: Tue, 14 May 2024 14:46:07 -0700 Subject: [PATCH] Remove commented out line. --- langgraph/checkpoint/aiosqlite.py | 1 - 1 file changed, 1 deletion(-) diff --git a/langgraph/checkpoint/aiosqlite.py b/langgraph/checkpoint/aiosqlite.py index 77bb9d4be..39e4e467e 100644 --- a/langgraph/checkpoint/aiosqlite.py +++ b/langgraph/checkpoint/aiosqlite.py @@ -286,7 +286,6 @@ class AsyncSqliteSaver(BaseCheckpointSaver, AbstractAsyncContextManager): LIMIT = f"LIMIT {limit}" if limit else "" query = f"{SELECT}{WHERE}{ORDER_BY}{LIMIT}" - # params = () if before is None else (str(before["configurable"]["thread_ts"]),) # execute query async with self.conn.execute(query, params) as cursor: