Spaces:
Running
on
A100
Running
on
A100
Update app.py
#5
by
jmole
- opened
app.py
CHANGED
@@ -30,7 +30,7 @@ folder_path = './inference/xcodec_mini_infer'
|
|
30 |
|
31 |
# Create the folder if it doesn't exist
|
32 |
if not os.path.exists(folder_path):
|
33 |
-
os.
|
34 |
print(f"Folder created at: {folder_path}")
|
35 |
else:
|
36 |
print(f"Folder already exists at: {folder_path}")
|
|
|
30 |
|
31 |
# Create the folder if it doesn't exist
|
32 |
if not os.path.exists(folder_path):
|
33 |
+
os.makedirs(folder_path)
|
34 |
print(f"Folder created at: {folder_path}")
|
35 |
else:
|
36 |
print(f"Folder already exists at: {folder_path}")
|