From 6c4d229f65e4d61c0cec637ee434b11a491b004b Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 17:04:26 -0700 Subject: [PATCH] cleanup --- basic_text_to_speech/talk.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/basic_text_to_speech/talk.py b/basic_text_to_speech/talk.py index 17032de..769c11a 100644 --- a/basic_text_to_speech/talk.py +++ b/basic_text_to_speech/talk.py @@ -13,8 +13,7 @@ if __name__ == '__main__': while True: try: print("initializing") - command = robot("Hello world how are you doing today?") - print(command) + robot("Hello world how are you doing today?") time.sleep(10) except KeyboardInterrupt: break