diff options
author | 2020-10-07 20:10:14 +0530 | |
---|---|---|
committer | 2020-10-07 20:10:14 +0530 | |
commit | f5d38198a70f36407c4b582de887fada854031e0 (patch) | |
tree | 9ce908442771411adc07a2ba6903bbda2f493f10 | |
parent | added typing.tuple (diff) |
added s in emoji_count
-rw-r--r-- | bot/exts/evergreen/emoji_count.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/emoji_count.py b/bot/exts/evergreen/emoji_count.py index 6b56afc3..fba7216c 100644 --- a/bot/exts/evergreen/emoji_count.py +++ b/bot/exts/evergreen/emoji_count.py @@ -61,8 +61,8 @@ 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"]) - async def emoji_count(self, ctx: commands.Context, *, category_query: str = None) -> None: + @commands.command(name="emojis_count", aliases=["ec"]) + async def emojis_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) |