From dbc41bd906520299cc80addf2ef0766ea95350b1 Mon Sep 17 00:00:00 2001 From: Xaloc Date: Wed, 4 Oct 2023 17:17:10 +0200 Subject: [PATCH] fix typo write --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index cffd86b..d87c7fb 100644 --- a/app.py +++ b/app.py @@ -55,4 +55,4 @@ if __name__=="__main__": text = large_audio(fname) fname = "transcript.txt" with open(fname, 'w') as f: - f.writeline(text) + f.writelines(text)