r3gm commited on
Commit
9d3da3e
1 Parent(s): 0422656

Update src/rvc.py

Browse files
Files changed (1) hide show
  1. 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: