From c9f90aaf5ae723203fcb46ea9df80371db8d5d11 Mon Sep 17 00:00:00 2001
From: David Horstmann <david.horstmann@arm.com>
Date: Mon, 16 Jan 2023 18:53:01 +0000
Subject: [PATCH] Remove overly verbose output on success

Signed-off-by: David Horstmann <david.horstmann@arm.com>
---
 scripts/code_style.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/scripts/code_style.py b/scripts/code_style.py
index 6222dbad4..5d05fd8a9 100755
--- a/scripts/code_style.py
+++ b/scripts/code_style.py
@@ -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")