Cleaned up old reflex files/legacy code etc

This commit is contained in:
Andrew Charlwood
2026-02-10 16:27:36 +00:00
parent a496c01eb4
commit b9fe89a4ee
10 changed files with 86 additions and 67 deletions
+4 -4
View File
@@ -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