Skip to content

Commit

Permalink
sort script output
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 committed Dec 17, 2024
1 parent 264ecb7 commit 6dcff38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/scripts/mypy_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def main() -> None:

if new_errors:
print("New mypy errors detected:")
print("\n".join(new_errors))
print("\n".join(sorted(new_errors)))
sys.exit(1)

print("No new mypy errors detected.")
Expand Down

0 comments on commit 6dcff38

Please sign in to comment.