imrnh commited on
Commit
7ab5f9c
1 Parent(s): 4333cf5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ sample = dataset[0]["audio"]
37
 
38
 
39
  @app.post("/speech_to_text")
40
- async def speech_to_text(file : UploadFile = File(...))
41
  if file:
42
  contents = await file.read()
43
  with open(file.filename, "wb") as f:
 
37
 
38
 
39
  @app.post("/speech_to_text")
40
+ async def speech_to_text(file : UploadFile = File(...)):
41
  if file:
42
  contents = await file.read()
43
  with open(file.filename, "wb") as f: