Skip to content

Commit

Permalink
fix: changed feedback placement
Browse files Browse the repository at this point in the history
  • Loading branch information
Chezka109 committed Nov 8, 2024
1 parent ff5320d commit 4b4f5e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gatorgrade/output/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,13 +370,12 @@ def run_checks(
summary_color = "green" if passed_count == len(results) else "bright white"
print_with_border(summary, summary_color)

# Determine whether or not the run was a success or not:
summary_status = True if passed_count == len(results) else False
# Provide a link for users to leave a review
print(
"\nWe'd love to hear your feedback! Please take a moment to leave a review: [https://forms.gle/jABEjXyw3q6HXn5W7]"
)

# Determine whether or not the run was a success or not:
summary_status = True if passed_count == len(results) else False
return summary_status


Expand Down

0 comments on commit 4b4f5e3

Please sign in to comment.