Spaces:
Sleeping
Sleeping
File size: 337 Bytes
1b3d798 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """Wrapper to expose the analytics & reports 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"
/ "6_Analytics_And_Reports.py"
)
runpy.run_path(str(ORIG), run_name="__main__")
|