Changes from https://github.com/juk0de/ChatMastermind.git #1

Closed
ok wants to merge 176 commits from main into juk
Showing only changes of commit 9b6b13993c - Show all commits

View File

@ -79,5 +79,5 @@ def display_tags_frequency(tags: List[str], dump=False) -> None:
if dump:
pp(tags)
return
for tag in set(tags):
for tag in sorted(set(tags)):
print(f"- {tag}: {tags.count(tag)}")