diff options
author | 2020-10-14 20:34:56 +0530 | |
---|---|---|
committer | 2020-10-14 20:34:56 +0530 | |
commit | 0ab3fb29ffdeb7c0b7b24bf4a62392428a8c344a (patch) | |
tree | a108d33c3afdce81f77769eef0c447667011c5fe /bot/exts | |
parent | improved readbility of code by breaking one liner into if else (diff) |
removed _ from command name
Diffstat (limited to 'bot/exts')
-rw-r--r-- | bot/exts/evergreen/emoji_count.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/emoji_count.py b/bot/exts/evergreen/emoji_count.py index 180e7132..cc43e9ab 100644 --- a/bot/exts/evergreen/emoji_count.py +++ b/bot/exts/evergreen/emoji_count.py @@ -67,7 +67,7 @@ class EmojiCount(commands.Cog): msg.append(f"These are the valid categories\n```{error_comp}```") return embed, msg - @commands.command(name="emoji_count", aliases=["ec", "emojis"]) + @commands.command(name="emojicount", aliases=["ec", "emojis"]) async def emoji_count(self, ctx: commands.Context, *, category_query: str = None) -> None: """Returns embed with emoji category and info given by the user.""" emoji_dict = defaultdict(list) |