Output the tag list sorted alphabetically.

This commit is contained in:
Oleksandr Kozachuk 2023-08-05 23:07:39 +02:00
parent c5c4a6628f
commit 9b6b13993c

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)}")