Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,8 @@ import shutil
|
|
11 |
import time
|
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}")
|
|
|
11 |
import time
|
12 |
from functools import lru_cache
|
13 |
|
14 |
+
current_dir = os.path.dirname(os.path.abspath(__file__))
|
15 |
+
|
16 |
# ✅ Add src to Python path
|
17 |
src_path = os.path.abspath(os.path.join(current_dir, "src"))
|
18 |
print(f"Adding to path: {src_path}")
|