Пример #1
0
def afk(bot: Bot, update: Update):
    args = update.effective_message.text.split(None, 1)
    reason = ""
    if len(args) >= 2:
        reason = args[1]

    sql.set_afk(update.effective_user.id, reason)
    update.effective_message.reply_text("{} is away from keyboard !".format(
        update.effective_user.first_name))
Пример #2
0
def afk(update: Update, _):
    args = update.effective_message.text.split(None, 1)
    reason = ""
    if len(args) >= 2:
        reason = args[1]

    sql.set_afk(update.effective_user.id, reason)
    update.effective_message.reply_text(
        "{} Dia lagi ngilang dari dunia".format(
            update.effective_user.first_name))