From ec6780fc7c75a40a45bfb1e06a7fe13fe3b947ab Mon Sep 17 00:00:00 2001 From: Anna Kotsa <44175203+annakotsa@users.noreply.github.com> Date: Wed, 13 May 2020 17:24:52 +0300 Subject: [PATCH] Update function print_say --- jarviscli/utilities/GeneralUtilities.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jarviscli/utilities/GeneralUtilities.py b/jarviscli/utilities/GeneralUtilities.py index e65df4a50..58d328228 100644 --- a/jarviscli/utilities/GeneralUtilities.py +++ b/jarviscli/utilities/GeneralUtilities.py @@ -24,10 +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 # TODO decide which ones use print_say instead of print