diff --git a/jarviscli/utilities/GeneralUtilities.py b/jarviscli/utilities/GeneralUtilities.py index e65df4a50..d5263aee2 100644 --- a/jarviscli/utilities/GeneralUtilities.py +++ b/jarviscli/utilities/GeneralUtilities.py @@ -24,9 +24,10 @@ def print_say(text, self, color=""): color: Fore.COLOR (ex Fore.BLUE), color for text :return: Nothing to return. """ + print(color + text + Fore.RESET) if self.enable_voice: self.speech.text_to_speech(text) - print(color + text + Fore.RESET) + # Functions for printing user output