discord.py default help command code example
Example 1: how to disable help command discord.py
bot.remove_command('help')
Example 2: Discord.py - change the default help command
bot = commands.Bot(command_prefix='!', help_command=None)
bot.remove_command('help')
bot = commands.Bot(command_prefix='!', help_command=None)