- I am unable to create a help command
- I've tried
help_command=None
- Error is
In 1.description: Must be between 1 and 100 in length.
In 2.description: Must be between 1 and 100 in length.
warnings.warn(f"Failed to overwrite global commands due to {e}", SyncWarning)```
My help command:
```py
@client.slash_command(dm_permission=False)
async def help(inter):
"""
Shows commands.
"""
help_embed = disnake.Embed(
title="**Help**",
description="test",
color=orange)
help_embed.add_field(
name="**Vouch Member**",
value="`/vouch positive/negative member comment`",
inline=False)
help_embed.add_field(
name="**Vouch Profile**",
value="`/profile Vouchee/Voucher Overall/Positive/Negative member (Optional)`",
inline=False)
help_embed.add_field(
name="**Vouch Leaderboard**",
value="`/profile Vouchee/Voucher Overall/Positive/Negative`",
inline=False)
await inter.response.send_message(emmbed=help_embed)