Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ import time
|
|
12 |
from functools import lru_cache
|
13 |
|
14 |
# ✅ Add src to Python path
|
15 |
-
src_path = os.path.abspath(os.path.join(
|
16 |
print(f"Adding to path: {src_path}")
|
17 |
sys.path.insert(0, src_path)
|
18 |
|
|
|
12 |
from functools import lru_cache
|
13 |
|
14 |
# ✅ Add src to Python path
|
15 |
+
src_path = os.path.abspath(os.path.join(current_dir, "src"))
|
16 |
print(f"Adding to path: {src_path}")
|
17 |
sys.path.insert(0, src_path)
|
18 |
|