abidlabs HF staff commited on
Commit
a80fa0a
1 Parent(s): f0a0639

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def transcribe(microphone, state, task="transcribe"):
28
 
29
  text = pipe(file)["text"]
30
 
31
- return state + "\n" text, state + "\n" text
32
 
33
 
34
 
 
28
 
29
  text = pipe(file)["text"]
30
 
31
+ return state + "\n" + text, state + "\n" + text
32
 
33
 
34