From 367a667349af5543259802deec2f9172bd5718eb Mon Sep 17 00:00:00 2001 From: 1NF1N0T1V3R <88645086+infinotiver@users.noreply.github.com> Date: Sun, 12 Oct 2025 13:16:07 +0530 Subject: [PATCH] fix: remove engine.stop() from speaknow function Removed engine.stop() from speaknow function. --- Text-to-Speech/Text-to-speech.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Text-to-Speech/Text-to-speech.py b/Text-to-Speech/Text-to-speech.py index f86c3268..1fb9730f 100644 --- a/Text-to-Speech/Text-to-speech.py +++ b/Text-to-Speech/Text-to-speech.py @@ -8,7 +8,6 @@ def speaknow(): engine.say(textv.get()) engine.runAndWait() - engine.stop() root=Tk() @@ -29,4 +28,4 @@ def speaknow(): root.title("Text to speech") root.geometry("480x200") root.resizable(False,False) -root.mainloop() \ No newline at end of file +root.mainloop()