Skip to content

Commit

Permalink
fix: remove unused console testing
Browse files Browse the repository at this point in the history
  • Loading branch information
TitusSmith33 committed Dec 5, 2024
1 parent 2747a1f commit 5826b32
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions gatorgrade/output/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
from gatorgrade.input.checks import GatorGraderCheck
from gatorgrade.input.checks import ShellCheck
from gatorgrade.output.check_result import CheckResult
from rich.console import Console

console = Console()

# Disable rich's default highlight to stop number coloring
rich.reconfigure(highlight=False)
Expand Down Expand Up @@ -384,8 +381,6 @@ def run_checks(
if len(failed_results) > 0:
print("\n-~- FAILURES -~-\n")
for result in failed_results:
# main.console.print("This is a result")
# main.console.print(result)
result.print(show_diagnostic=True)
# this result is an instance of CheckResult
# that has a run_command field that is some
Expand Down

0 comments on commit 5826b32

Please sign in to comment.