fix(emojiinfo): added descriptions to the application command parameters

This commit is contained in:
Seaswimmer 2024-05-08 15:48:18 -04:00
parent d65d04fa7a
commit aa6e0d7590
Signed by: cswimr
GPG key ID: 5D671B5D03D65A7F

View file

@ -5,7 +5,7 @@ import aiohttp
import discord
from colorthief import ColorThief
from red_commons.logging import RedTraceLogger, getLogger
from redbot.core import commands
from redbot.core import app_commands, commands
from redbot.core.bot import Red
from redbot.core.utils.chat_formatting import bold, humanize_list
@ -17,7 +17,7 @@ class EmojiInfo(commands.Cog):
__author__: list[str] = ["SeaswimmerTheFsh"]
__version__: str = "1.0.0"
__documentation__: str = "https://seacogs.coastalcommits.com/emoji/"
__documentation__: str = "https://seacogs.coastalcommits.com/emojiinfo/"
def __init__(self, bot: Red) -> None:
super().__init__()
@ -54,6 +54,10 @@ class EmojiInfo(commands.Cog):
return color
@commands.hybrid_command(name="emoji")
@app_commands.describe(
emoji="What emoji would you like to get information on?",
ephemeral="Would you like the response to be hidden?"
)
async def emoji(self, ctx: commands.Context, emoji: str, ephemeral: bool = False) -> None:
"""Retrieve information about an emoji."""
await ctx.defer(ephemeral=ephemeral)