From 932e00cf69647a8d9e09a1939550825d016041bb Mon Sep 17 00:00:00 2001 From: Rebekah Rudd Date: Mon, 4 Nov 2024 19:55:05 -0500 Subject: [PATCH] chore: deleted the extra yellow tags in check_result.py --- gatorgrade/output/check_result.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gatorgrade/output/check_result.py b/gatorgrade/output/check_result.py index 8f96587d..55835b9e 100644 --- a/gatorgrade/output/check_result.py +++ b/gatorgrade/output/check_result.py @@ -44,7 +44,7 @@ def display_result(self, show_diagnostic: bool = False) -> str: icon_color = "green" if self.passed else "red" message = f"[{icon_color}]{icon}[/] {self.description}" if not self.passed and show_diagnostic: - message += f"\n[yellow] → [yellow]Failing Command Output: [yellow]{self.diagnostic}" + message += f"\n[yellow] → Failing Command Output: {self.diagnostic}" return message def __repr__(self):