From 3918f2afb14f643193a810d2b6ffeaf89cee844d Mon Sep 17 00:00:00 2001 From: JGStew Date: Mon, 1 Jul 2024 17:50:42 -0400 Subject: [PATCH] add comment --- SharedProcessors/TextToSpeech.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SharedProcessors/TextToSpeech.py b/SharedProcessors/TextToSpeech.py index d53bc4c..a068b48 100644 --- a/SharedProcessors/TextToSpeech.py +++ b/SharedProcessors/TextToSpeech.py @@ -52,6 +52,8 @@ def speak(self, input_string): engine.say(input_string) engine.runAndWait() + # related: https://stackoverflow.com/a/39647762/861745 + def main(self): """Execution starts here"""