uselessrp / pyUltroid /dB /blacklist_chat_db.py
dragxd's picture
Initial Deployment to Hugging Face with LFS
a13ea9d
from .. import udB
def add_black_chat(chat_id):
chat = udB.get_key("BLACKLIST_CHATS") or []
if chat_id not in chat:
chat.append(chat_id)
return udB.set_key("BLACKLIST_CHATS", chat)
def rem_black_chat(chat_id):
chat = udB.get_key("BLACKLIST_CHATS") or []
if chat_id in chat:
chat.remove(chat_id)
return udB.set_key("BLACKLIST_CHATS", chat)