From 8fffd5d563f794f488f39d7082b50013457ae974 Mon Sep 17 00:00:00 2001 From: Aevann Date: Thu, 7 Mar 2024 00:25:02 +0200 Subject: [PATCH] fix 502 --- files/helpers/const_stateful.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/const_stateful.py b/files/helpers/const_stateful.py index 596ab7e85e..7564c4f0f4 100644 --- a/files/helpers/const_stateful.py +++ b/files/helpers/const_stateful.py @@ -35,7 +35,7 @@ def const_initialize(): SNAPPY_KONGS = db.query(Emoji.name).filter(Emoji.kind=="Donkey Kong", Emoji.submitter_id==None, Emoji.nsfw == False).all() SNAPPY_KONGS = [f':#{x[0]}:' for x in SNAPPY_KONGS] - GIGABOOSTED_HOLES = [x[0] for x in db.query(Hole.name).filter_by(stealth=True)] + ['highrollerclub','countryclub'] - ['chudrama'] + GIGABOOSTED_HOLES = [x[0] for x in db.query(Hole.name).filter_by(stealth=True)] + ['highrollerclub','countryclub'] - 'chudrama' NSFW_EMOJIS = [x[0] for x in db.query(Emoji.name).filter_by(nsfw=True)]