Spaces:
Running
Running
Commit
·
3926f24
1
Parent(s):
8bd092e
Update routes/helpers.py (#1)
Browse files- Update routes/helpers.py (2f8ee7279f995c7cd9a1a73387dc2c4ec0dce1dd)
- 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 |
|