ci/lint: fix missing return value in lint-commit-msg

This commit is contained in:
Nathan Ruiz 2024-09-29 02:15:29 +00:00 committed by Kacper Michajłow
parent 44a296be97
commit 62abcbdd88
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ def do_lint(commit_range: str) -> bool:
print("\nhas the following issues:")
print("\n".join(failed))
print("-" * 40)
return any_failed
################################################################################