mizoru commited on
Commit
4b0b51b
1 Parent(s): 50a5992

fix download return

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ def download_gdrive(id):
31
  output_file = "audio.wav" # Replace "data_file.ext" with the desired output filename and extension
32
 
33
  gdown.download(f"https://drive.google.com/uc?id={id}", output_file)
34
- return "output_file.wav"
35
 
36
  def main():
37
 
 
31
  output_file = "audio.wav" # Replace "data_file.ext" with the desired output filename and extension
32
 
33
  gdown.download(f"https://drive.google.com/uc?id={id}", output_file)
34
+ return output_file
35
 
36
  def main():
37