hackathon_code4change / pages /3_Simulation_Workflow.py
RoyAalekh's picture
created proxy pages to support streamlit struct
1b3d798
"""Wrapper to expose the simulation workflow page to Streamlit's pages system."""
from __future__ import annotations
from pathlib import Path
import runpy
ORIG = (
Path(__file__).resolve().parents[1]
/ "src"
/ "dashboard"
/ "pages"
/ "3_Simulation_Workflow.py"
)
runpy.run_path(str(ORIG), run_name="__main__")