From fb66355d2a2ba895ec25dc9158784185f496f7ff Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 22 Dec 2022 23:25:40 +0200 Subject: [PATCH] remove leftover print statement --- files/routes/routehelpers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/files/routes/routehelpers.py b/files/routes/routehelpers.py index a0307dc08..b149c23c4 100644 --- a/files/routes/routehelpers.py +++ b/files/routes/routehelpers.py @@ -31,7 +31,6 @@ def validate_formkey(u:User, formkey:Optional[str]) -> bool: @cache.memoize(timeout=604800) def get_alt_graph(uid:int) -> List[User]: - print(uid, flush=True) alt_graph_cte = g.db.query(literal(uid).label('user_id')).select_from(Alt).cte('alt_graph', recursive=True) alt_graph_cte_inner = g.db.query(