Spaces:
Runtime error
Runtime error
imperialwool
commited on
Commit
•
2f8ee72
1
Parent(s):
8bd092e
Update routes/helpers.py
Browse files- routes/helpers.py +1 -1
routes/helpers.py
CHANGED
@@ -36,7 +36,7 @@ def deleteAudio(path: str, waitInSeconds: int = 0):
|
|
36 |
|
37 |
# Config file reading
|
38 |
def configFile():
|
39 |
-
with open("
|
40 |
config = json.loads(file.read())
|
41 |
return config
|
42 |
|
|
|
36 |
|
37 |
# Config file reading
|
38 |
def configFile():
|
39 |
+
with open("/app/routes/config.json", "r") as file:
|
40 |
config = json.loads(file.read())
|
41 |
return config
|
42 |
|