NeoPy commited on
Commit
735de0d
·
verified ·
1 Parent(s): b5a9f2c

Update app/app.py

Browse files
Files changed (1) hide show
  1. app/app.py +3 -1
app/app.py CHANGED
@@ -1,5 +1,7 @@
1
  import gradio as gr
2
- from original import *
 
 
3
  from app.tabs.models.onnx import onnx_conv
4
  from app.tabs.infer.infer import infer_tabs
5
  from app.tabs.infer.uvr import uvr_tabs
 
1
  import gradio as gr
2
+ import os, sys
3
+ sys.path.append(os.getcwd())
4
+
5
  from app.tabs.models.onnx import onnx_conv
6
  from app.tabs.infer.infer import infer_tabs
7
  from app.tabs.infer.uvr import uvr_tabs