JackismyShephard commited on
Commit
e1daf57
·
verified ·
1 Parent(s): e86beda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,3 +1,7 @@
 
 
1
  from ultimate_rvc.web.main import start_app
2
 
3
- start_app(share = True, cookiefile = "config.txt")
 
 
 
1
+ import os
2
+
3
  from ultimate_rvc.web.main import start_app
4
 
5
+ os.environ["YT_COOKIEFILE"] = "config.txt"
6
+
7
+ start_app(share = True)