@client.callback_query_handler(func=lambda call: True)
def answer(call):
if call.data == 'accept':
client.send_message(call.message.chat.id, 'Администратор принял твою заявку')
elif call.data == 'decline':
client.send_message(call.message.chat.id, 'Администратор отклонил твою заявку')
cursor.execute("SELECT name, cash FROM users WHERE server_id = (%s) ORDER BY cash DESC LIMIT 10", (ctx.guild.id))
data = cursor.fetchall()
for row in data:
...
@bot.command()
@commands.dm_only()
async def cmd(...):