fix download return
Browse files
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
|
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 |
|