Output the tag list sorted alphabetically.
This commit is contained in:
parent
c5c4a6628f
commit
9b6b13993c
@ -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)}")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user