diff --git a/gatorgrade/output/output.py b/gatorgrade/output/output.py index 446acda1..4b2cac7e 100644 --- a/gatorgrade/output/output.py +++ b/gatorgrade/output/output.py @@ -372,10 +372,7 @@ def run_checks( # 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]" - ) + return summary_status @@ -402,3 +399,9 @@ def print_with_border(text: str, rich_color: str): rich.print(f"[{rich_color}]\n\t{upleft}{line}{upright}") rich.print(f"[{rich_color}]\t{vert} {text} {vert}") rich.print(f"[{rich_color}]\t{downleft}{line}{downright}\n") + + +# 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]" +)