Skip to content
This repository was archived by the owner on Feb 3, 2024. It is now read-only.

Commit 220a638

Browse files
committed
Remove filter comment
1 parent 7a5fbe7 commit 220a638

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

quotefault/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,6 @@ def hidden():
378378
@auth.oidc_auth
379379
def random_quote():
380380
quote = db.session.execute("SELECT * FROM quotefault.quote WHERE hidden=0 ORDER BY RAND() LIMIT 1;").all()[0]
381-
#quote = get_quote_query(speaker = request.args.get('speaker'),
382-
# submitter = request.args.get('submitter')).order_by(func.rand()).limit(1).all()[0][0]
383381
out = f"{quote[2]} -{quote[3]} (Submitted by {quote[1]})"
384382
return out, 200
385383

0 commit comments

Comments
 (0)