Skip to content

Commit

Permalink
chore: deleted the extra yellow tags in check_result.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rebekahrudd committed Nov 5, 2024
1 parent d5abd8c commit 932e00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatorgrade/output/check_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 932e00c

Please sign in to comment.