From 517d3085bb6f70fa1ba5fd9fdee8d9292593ba13 Mon Sep 17 00:00:00 2001 From: Enzo Nunes Date: Wed, 26 Feb 2025 10:44:19 +0000 Subject: [PATCH] another slight change to almost picable string --- PICable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PICable.py b/PICable.py index 5f7636c..85b0ddf 100644 --- a/PICable.py +++ b/PICable.py @@ -134,7 +134,7 @@ def PICable(owner, repository, token): elif stars >= LIMIT_STARS and commits_30_days >= LIMIT_COMMITS_30_DAYS and lines_of_code >= LIMIT_NLOC: picable_report += f"The repository {repository_url} is PICable. :white_check_mark:\n" else: - picable_report += f"The repository {repository_url} is almost PICable. :warning:\nThere is at least one parameter which is below the requirement, but by less than {margin_percentage}%. Consult with a professor before proceeding.\n" + picable_report += f"The repository {repository_url} is almost PICable. :warning:\nThere is at least one parameter which is below the requirement, but by less than {margin_percentage}%.\nConsult with a professor before proceeding.\n" print("Analysis complete.") return picable_report