diff options
author | 2021-08-14 16:59:50 +0200 | |
---|---|---|
committer | 2021-08-14 16:59:50 +0200 | |
commit | c9e85dd5b7104bc652861c1d9623ce4da4122ae8 (patch) | |
tree | 28ea801ba885b0f24078732d488fbc84096cd3d1 | |
parent | Use new Tags cog structure in source.py (diff) |
use an empty string as the initial group value
-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 8dcfa279e..68ab5f6bb 100644 --- a/bot/exts/info/tags.py +++ b/bot/exts/info/tags.py @@ -327,7 +327,7 @@ class Tags(Cog): return group + name result_lines = [] - current_group = object() + current_group = "" group_accessible = True for identifier, tag in sorted(self.tags.items(), key=tag_sort_key): |