From d5abd8cbb772cd4f14eb3e30b143620a64b6e7c0 Mon Sep 17 00:00:00 2001 From: Rebekah Rudd Date: Mon, 4 Nov 2024 19:51:44 -0500 Subject: [PATCH] feat: added a description to define the failing comand output --- 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 f6e88c29..8f96587d 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] → {self.diagnostic}" + message += f"\n[yellow] → [yellow]Failing Command Output: [yellow]{self.diagnostic}" return message def __repr__(self):