serJD commited on
Commit
7d98790
1 Parent(s): cc2c761

restructured how speckle utils is imported

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. tripGenerationFunc.py +5 -2
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
tripGenerationFunc.py CHANGED
@@ -17,8 +17,11 @@ import time
17
  from functools import wraps
18
 
19
 
20
- import speckle_utils
21
- import data_utils
 
 
 
22
 
23
 
24
 
 
17
  from functools import wraps
18
 
19
 
20
+
21
+ sys.path.append("RECODE_speckle_utils")
22
+
23
+
24
+ from .RECODE_speckle_utils import speckle_utils
25
 
26
 
27