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:
|
||||
pp(tags)
|
||||
return
|
||||
for tag in set(tags):
|
||||
for tag in sorted(set(tags)):
|
||||
print(f"- {tag}: {tags.count(tag)}")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user