Akash Garg commited on
Commit
abdc26c
·
1 Parent(s): ad63d32
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,7 +6,8 @@ import trimesh
6
  import sys
7
  from pathlib import Path
8
 
9
- sys.path.append(Path(__file__) / 'cube')
 
10
 
11
  from cube3d.inference.engine import EngineFast
12
  from pathlib import Path
 
6
  import sys
7
  from pathlib import Path
8
 
9
+ pathdir = Path(__file__).parent / 'cube'
10
+ sys.path.append(pathdir.as_posix())
11
 
12
  from cube3d.inference.engine import EngineFast
13
  from pathlib import Path