You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds the optional `order` argument to the @Bot.command
decorator, allowing you to reorder commands in `/help`.
@bot.command("test", order=5)
def test_commad(chat, message, args):
"""I'm the fifth!"""
chat.send("I'm the fifth!")
0 commit comments