Coverage for openhcs/pyqt_gui/__main__.py: 0.0%

3 statements  

« prev     ^ index     » next       coverage.py v7.10.3, created at 2025-08-14 05:57 +0000

1#!/usr/bin/env python3 

2""" 

3OpenHCS PyQt6 GUI - Module Entry Point 

4 

5Allows running the PyQt6 GUI directly with: 

6 python -m openhcs.pyqt_gui 

7 

8This is a convenience wrapper around the launch script. 

9""" 

10 

11import sys 

12from pathlib import Path 

13 

14# Import the main function from launch script 

15from openhcs.pyqt_gui.launch import main 

16 

17if __name__ == "__main__": 

18 sys.exit(main())