From 605dc96cc7c296916205677fd876560413d053f3 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 1 Jul 2022 03:57:01 +0200 Subject: [PATCH] remoev testing shit --- files/routes/posts.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/files/routes/posts.py b/files/routes/posts.py index dfbeb75fb..43ef68f8d 100644 --- a/files/routes/posts.py +++ b/files/routes/posts.py @@ -186,16 +186,7 @@ def post_id(pid, anything=None, v=None, sub=None): comments = sort_comments(sort, comments) - t = time.time() first = [c[0] for c in comments.filter(or_(and_(Comment.slots_result == None, Comment.blackjack_result == None, Comment.wordle_result == None), func.length(Comment.body_html) > 100)).all()] - print(time.time() - t, flush=True) - - - t = time.time() - first = [c[0] for c in comments if (c[0].slots_result == None and c[0].blackjack_result == None and c[0].wordle_result == None) or len(c[0].body_html) > 100] - print(time.time() - t, flush=True) - - second = [c[0] for c in comments.filter(or_(Comment.slots_result != None, Comment.blackjack_result != None, Comment.wordle_result != None), func.length(Comment.body_html) <= 100).all()] comments = first + second else: