From 64bcb8c251e97385d00f2fc6aa971cbf97882d4d Mon Sep 17 00:00:00 2001 From: Jithin Sasikumar Date: Tue, 16 Aug 2022 02:38:42 +0200 Subject: [PATCH] Fixed a bug in the code --- app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app.py b/app.py index a36e530..40f9bdc 100644 --- a/app.py +++ b/app.py @@ -44,8 +44,6 @@ def transcribe(): """ recognized_keyword = "" - redirect(request.url) - if request.method == "POST": audio_file = request.files["file"] if audio_file.filename == "": @@ -75,4 +73,4 @@ def transcribe(): ) if __name__ == "__main__": - app.run(debug=False) \ No newline at end of file + app.run(debug=False)