LuisV commited on
Commit
6f7199d
·
1 Parent(s): f17c211

trying to fix path typo

Browse files
imageprocessing/imageprocessingtools.py CHANGED
@@ -1,5 +1,11 @@
1
  import sys, os
2
- sys.path.append(os.path.join(os.curdir, "artemis"))
 
 
 
 
 
 
3
 
4
  import artemis
5
  from color_detection import get_colors
 
1
  import sys, os
2
+ sys.path.append(
3
+ os.path.join(
4
+ os.getcwd(),
5
+ "imageprocessing",
6
+ "artemis"
7
+ )
8
+ )
9
 
10
  import artemis
11
  from color_detection import get_colors