Spaces:
Runtime error
Runtime error
Update src/rvc.py
Browse files- src/rvc.py +2 -2
src/rvc.py
CHANGED
@@ -26,9 +26,9 @@ def use_fp32_config():
|
|
26 |
"48k_v2.json",
|
27 |
"32k_v2.json",
|
28 |
]:
|
29 |
-
with open(f"configs/{config_file}", "r") as f:
|
30 |
strr = f.read().replace("true", "false")
|
31 |
-
with open(f"configs/{config_file}", "w") as f:
|
32 |
f.write(strr)
|
33 |
|
34 |
class Config:
|
|
|
26 |
"48k_v2.json",
|
27 |
"32k_v2.json",
|
28 |
]:
|
29 |
+
with open(f"src/configs/{config_file}", "r") as f:
|
30 |
strr = f.read().replace("true", "false")
|
31 |
+
with open(f"src/configs/{config_file}", "w") as f:
|
32 |
f.write(strr)
|
33 |
|
34 |
class Config:
|