rbcurzon commited on
Commit
deb75d7
·
verified ·
1 Parent(s): 4d83a62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -103,9 +103,9 @@ async def test(file: UploadFile = File(...),
103
  finally:
104
  if file.file:
105
  file.file.close()
106
- if os.path.exists(file.filename)
107
  os.remove(file.filename)
108
- if os.path.exists("only_speech.wav")
109
  os.remove("only_speech.wav")
110
 
111
 
 
103
  finally:
104
  if file.file:
105
  file.file.close()
106
+ if os.path.exists(file.filename):
107
  os.remove(file.filename)
108
+ if os.path.exists("only_speech.wav"):
109
  os.remove("only_speech.wav")
110
 
111