Output the tag list sorted alphabetically.
This commit is contained in:
@@ -79,5 +79,5 @@ def display_tags_frequency(tags: List[str], dump=False) -> None:
|
|||||||
if dump:
|
if dump:
|
||||||
pp(tags)
|
pp(tags)
|
||||||
return
|
return
|
||||||
for tag in set(tags):
|
for tag in sorted(set(tags)):
|
||||||
print(f"- {tag}: {tags.count(tag)}")
|
print(f"- {tag}: {tags.count(tag)}")
|
||||||
|
|||||||
Reference in New Issue
Block a user