From dc53cf5a0ba44bea0f29aa37a93cd92f8357175f Mon Sep 17 00:00:00 2001 From: Chezka Quinola Date: Fri, 8 Nov 2024 10:22:47 -0500 Subject: [PATCH] fix: changed the link location again --- gatorgrade/output/output.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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]" +)