"""Standalone launcher — Dashboard Pivot Emissioni.""" import sys from pathlib import Path _root = Path(__file__).resolve().parent.parent.parent.parent if str(_root) not in sys.path: sys.path.insert(0, str(_root)) from app.features.dash_runner import run_dashboard from app.features.dash_em_pivot import DashboardEmPivotPage from app.features.dash_em_pivot.filter_panel_widget import FilterPanelEmPivot from app.features.dash_em_pivot.fullscreen_page import FullScreenTablePage if __name__ == '__main__': run_dashboard( DashClass=DashboardEmPivotPage, filter_loader=FilterPanelEmPivot.get_filter_data, title='Pivot Emissioni', fullscreen_map={'fullscreen_pivot': FullScreenTablePage}, )