Skip to content

Commit

Permalink
chore: print unused keys sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Aug 29, 2024
1 parent 2c03ee0 commit 79211fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/localization/generateLocalizedStringsAnalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def process_keys():
# Print the result statistics and file paths (linkable)

if args.print_not_found:
[print(key) for key in not_found_keys]
[print(key) for key in sorted(not_found_keys)]


def find_key_lazy(key):
Expand Down

0 comments on commit 79211fb

Please sign in to comment.