pvanand commited on
Commit
7555e96
·
1 Parent(s): 4b3481f

Remove sys.path

Browse files
Files changed (1) hide show
  1. actions/actions.py +2 -2
actions/actions.py CHANGED
@@ -14,8 +14,8 @@ import sys
14
  import openai
15
 
16
  # Add "/actions" to the sys.path
17
- actions_path = os.path.abspath("/actions")
18
- sys.path.insert(0, actions_path)
19
 
20
  # Import search_content.py from /actions folder
21
  from search_content import main_search
 
14
  import openai
15
 
16
  # Add "/actions" to the sys.path
17
+ #actions_path = os.path.abspath("/actions")
18
+ #sys.path.insert(0, actions_path)
19
 
20
  # Import search_content.py from /actions folder
21
  from search_content import main_search