From cae949edb45da708764fc29cc5948d5436fffe28 Mon Sep 17 00:00:00 2001 From: Anna Kotsa <44175203+annakotsa@users.noreply.github.com> Date: Wed, 13 May 2020 16:59:41 +0300 Subject: [PATCH] Update function print_say --- jarviscli/utilities/GeneralUtilities.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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