NexusInstruments commited on
Commit
3495761
·
verified ·
1 Parent(s): 9c37488

Update pages/SkipTrace.py

Browse files
Files changed (1) hide show
  1. pages/SkipTrace.py +8 -0
pages/SkipTrace.py CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
  import requests
3
  import sys, os
 
1
+ import sys, os
2
+
3
+ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
4
+ UTILS_DIR = os.path.join(BASE_DIR, "utils")
5
+
6
+ if UTILS_DIR not in sys.path:
7
+ sys.path.insert(0, UTILS_DIR)
8
+
9
  import streamlit as st
10
  import requests
11
  import sys, os