Skip to content

Commit

Permalink
style: black format
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ue-Dev committed Aug 31, 2023
1 parent 6237425 commit 87745bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/exts/utils/emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 2 additions & 4 deletions src/exts/utils/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down Expand Up @@ -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",
Expand Down
3 changes: 1 addition & 2 deletions src/exts/utils/translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 87745bc

Please sign in to comment.