how to change help command on discord python

Solutions on MaxInterview for how to change help command on discord python by the best coders in the world

showing results for - "how to change help command on discord python"
Antonio
08 Mar 2017
1client = commands.Bot(command_prefix = '~', help_command=None)
2
3@client.command()
4async def help(ctx):
5    await context.send('`Whatever`')