From d78613e558f38f3964a852598dd3fbc40eadb77d Mon Sep 17 00:00:00 2001 From: Torantulino Date: Thu, 30 Mar 2023 12:43:26 +0100 Subject: [PATCH] Colours goal print. --- AutonomousAI/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutonomousAI/main.py b/AutonomousAI/main.py index 0526fc64..ed6512cb 100644 --- a/AutonomousAI/main.py +++ b/AutonomousAI/main.py @@ -85,7 +85,7 @@ def construct_prompt(): print("Enter nothing to load defaults, enter nothing when finished.", flush=True) ai_goals = [] for i in range(5): - ai_goal = input(f"Goal {i+1}: ") + ai_goal = input(f"{Fore.LIGHTBLUE_EX}Goal{Style.RESET_ALL} {i+1}: ") if ai_goal == "": break ai_goals.append(ai_goal)