Spaces:
Running
Running
inoki-giskard
commited on
Commit
•
e95a647
1
Parent(s):
92e2a79
Use config.yaml in the project root as base
Browse files- io_utils.py +1 -1
io_utils.py
CHANGED
@@ -17,7 +17,7 @@ def get_yaml_path(uid):
|
|
17 |
if not os.path.exists(YAML_PATH):
|
18 |
os.makedirs(YAML_PATH)
|
19 |
if not os.path.exists(f"{YAML_PATH}/{uid}_config.yaml"):
|
20 |
-
os.system(f"cp
|
21 |
return f"{YAML_PATH}/{uid}_config.yaml"
|
22 |
|
23 |
|
|
|
17 |
if not os.path.exists(YAML_PATH):
|
18 |
os.makedirs(YAML_PATH)
|
19 |
if not os.path.exists(f"{YAML_PATH}/{uid}_config.yaml"):
|
20 |
+
os.system(f"cp config.yaml {YAML_PATH}/{uid}_config.yaml")
|
21 |
return f"{YAML_PATH}/{uid}_config.yaml"
|
22 |
|
23 |
|