From 2d741c86270e533e611024ee82291c57134ab6f6 Mon Sep 17 00:00:00 2001 From: Vlad Stan Date: Mon, 30 Jan 2023 17:57:55 +0200 Subject: [PATCH] chore: code clean-up --- crud.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/crud.py b/crud.py index 6e81a39..413cbda 100644 --- a/crud.py +++ b/crud.py @@ -76,10 +76,9 @@ async def get_events(relay_id: str, filter: NostrFilter) -> List[NostrEvent]: if filter.limit and type(filter.limit) == int and filter.limit > 0: query += f" LIMIT {filter.limit}" - print("### query: ", query) - print("### values: ", tuple(values)) + # print("### query: ", query) + # print("### values: ", tuple(values)) rows = await db.fetchall(query, tuple(values)) - # events = [NostrEvent.from_row(row) for row in rows] events = [] for row in rows: