diff options
author | 2023-08-10 06:04:31 +0000 | |
---|---|---|
committer | 2023-08-10 06:04:31 +0000 | |
commit | f897f6c576d7dca764c9c0515b2c576e7fb0daea (patch) | |
tree | 4609c804db7ad9e0c4f415fc0e8a8353f2dfc6e1 /bot/exts/utilities/emoji.py | |
parent | Bump rapidfuzz from 3.1.2 to 3.2.0 (#1341) (diff) |
Bump ruff from 0.0.272 to 0.0.280 (#1333)
Co-authored-by: wookie184 <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Lovering <[email protected]>
Co-authored-by: ChrisJL <[email protected]>
Diffstat (limited to 'bot/exts/utilities/emoji.py')
-rw-r--r-- | bot/exts/utilities/emoji.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/emoji.py b/bot/exts/utilities/emoji.py index ce352fe2..bbaf6d25 100644 --- a/bot/exts/utilities/emoji.py +++ b/bot/exts/utilities/emoji.py @@ -78,7 +78,7 @@ class Emojis(commands.Cog): await self.bot.invoke_help_command(ctx) @emoji_group.command(name="count", aliases=("c",)) - async def count_command(self, ctx: commands.Context, *, category_query: str = None) -> None: + async def count_command(self, ctx: commands.Context, *, category_query: str | None = None) -> None: """Returns embed with emoji category and info given by the user.""" emoji_dict = defaultdict(list) |