Spaces:
Runtime error
Runtime error
Update pages/SkipTrace.py
Browse files- pages/SkipTrace.py +6 -0
pages/SkipTrace.py
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import sys, os, requests
|
| 3 |
|
|
|
|
| 1 |
+
# ─── Ensure utils/ is importable ──────────────────────────────
|
| 2 |
+
import sys, os
|
| 3 |
+
UTILS_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
|
| 4 |
+
if UTILS_PATH not in sys.path:
|
| 5 |
+
sys.path.append(UTILS_PATH)
|
| 6 |
+
|
| 7 |
import streamlit as st
|
| 8 |
import sys, os, requests
|
| 9 |
|