Remove overly verbose output on success

Signed-off-by: David Horstmann <[email protected]>
This commit is contained in:
David Horstmann
2023-01-24 16:00:01 +00:00
parent 28d2157002
commit c9f90aaf5a
-2
View File
@@ -122,8 +122,6 @@ def check_style_is_correct(src_file_list: List[str]) -> bool:
print("File changed - diff:", file=STDOUT_UTF8)
print(str(result.stdout, "utf-8"), file=STDOUT_UTF8)
style_correct = False
else:
print(src_file + " - OK.", file=STDOUT_UTF8)
# Tidy up artifact
os.remove(src_file + ".uncrustify")