#!/usr/bin/env python3 """Launcher for the OBDash GUI. pip install PySide6 pyqtgraph numpy pyserial python run_gui.py Tick "Mock" + Connect to explore with simulated data (no adapter needed). """ from gui.main import run if __name__ == "__main__": run()