Cleaned up old reflex files/legacy code etc
This commit is contained in:
+4
-4
@@ -2,10 +2,10 @@
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
# Ensure src/ is on sys.path so that core/, data_processing/, etc. are importable
|
||||
_src_dir = str(Path(__file__).resolve().parent / "src")
|
||||
if _src_dir not in sys.path:
|
||||
sys.path.insert(0, _src_dir)
|
||||
# Ensure project root is on sys.path so that core/, data_processing/, etc. are importable
|
||||
_project_root = str(Path(__file__).resolve().parent)
|
||||
if _project_root not in sys.path:
|
||||
sys.path.insert(0, _project_root)
|
||||
|
||||
from dash_app.app import app
|
||||
|
||||
|
||||
Reference in New Issue
Block a user