Remove commented out line.

This commit is contained in:
Andrew Nguonly
2024-05-14 14:46:07 -07:00
parent 78e3a240f1
commit 306260185a
-1
View File
@@ -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: