diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/tags.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/tags.py b/bot/exts/info/tags.py index d80ca448d..5632f2959 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -318,7 +318,7 @@ class Tags(Cog):      async def list_all_tags(self, ctx: Context) -> None:          """Send a paginator with all loaded tags accessible by `ctx.author`, groups first, and alphabetically sorted.""" -        def tag_sort_key(tag_item: tuple[TagIdentifier, tag]) -> str: +        def tag_sort_key(tag_item: tuple[TagIdentifier, Tag]) -> str:              group, name = tag_item[0]              if group is None:                  # Max codepoint character to force tags without a group to the end  |