diff options
author | 2021-08-15 21:31:47 +0200 | |
---|---|---|
committer | 2021-08-15 21:31:47 +0200 | |
commit | 4724853d8155444ae1db50c24c5424c4d25f3dec (patch) | |
tree | dd5076ae16e00c6b8e7d53c7291e885dff519f8f | |
parent | Reword `tag get` help (diff) |
Fix incorrect annotation
Co-authored-by: Bluenix <[email protected]>
-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 |