diff --git a/src/exts/utils/emoji.py b/src/exts/utils/emoji.py index 7f8a5a1..2309f4d 100644 --- a/src/exts/utils/emoji.py +++ b/src/exts/utils/emoji.py @@ -109,7 +109,7 @@ async def emoji(self, ctx: interactions.SlashContext) -> None: @emoji.subcommand( sub_cmd_name="info", - sub_cmd_description="Checks the information about an emoji." + sub_cmd_description="Checks the information about an emoji.", ) @interactions.slash_option( name="emoji", @@ -256,7 +256,7 @@ async def info(self, ctx: interactions.SlashContext, emoji: str) -> None: @emoji.subcommand( sub_cmd_name="steal", - sub_cmd_description="Gets an emoji from another server and adds to the current one." + sub_cmd_description="Gets an emoji from another server and adds to the current one.", ) @interactions.slash_option( name="emoji", @@ -390,7 +390,7 @@ async def steal( @emoji.subcommand( sub_cmd_name="add", - sub_cmd_description="Creates an emoji from a URL or an image." + sub_cmd_description="Creates an emoji from a URL or an image.", ) @interactions.slash_option( name="emoji_name", diff --git a/src/exts/utils/tag.py b/src/exts/utils/tag.py index 7037322..f10a087 100644 --- a/src/exts/utils/tag.py +++ b/src/exts/utils/tag.py @@ -36,8 +36,7 @@ async def tag(self, ctx: interactions.SlashContext) -> None: ... @tag.subcommand( - sub_cmd_name="create", - sub_cmd_description="Creates a new tag." + sub_cmd_name="create", sub_cmd_description="Creates a new tag." ) async def create(self, ctx: interactions.SlashContext) -> None: """Creates a new tag.""" @@ -251,8 +250,7 @@ async def info( return await ctx.send("Tag not found.") @tag.subcommand( - sub_cmd_name="delete", - sub_cmd_description="Deletes a tag." + sub_cmd_name="delete", sub_cmd_description="Deletes a tag." ) @interactions.slash_option( name="tag_name", diff --git a/src/exts/utils/translation.py b/src/exts/utils/translation.py index dfb477e..2c97fa6 100644 --- a/src/exts/utils/translation.py +++ b/src/exts/utils/translation.py @@ -250,8 +250,7 @@ async def translate(self, ctx: interactions.SlashContext) -> None: ... @translate.subcommand( - sub_cmd_name="text", - sub_cmd_description="Translate a piece of text." + sub_cmd_name="text", sub_cmd_description="Translate a piece of text." ) @interactions.slash_option( name="text",