Main function to launch the application.
()
| 1744 | |
| 1745 | |
| 1746 | def main(): |
| 1747 | """Main function to launch the application.""" |
| 1748 | app = QtWidgets.QApplication(sys.argv) |
| 1749 | main_window = QtWidgets.QMainWindow() |
| 1750 | stacked_widget, widgets = setup_main_window(main_window) |
| 1751 | |
| 1752 | # Example: Connect submit buttons to print input values |
| 1753 | |
| 1754 | main_window.show() |
| 1755 | sys.exit(app.exec_()) |
| 1756 | |
| 1757 | |
| 1758 | # ------------------------------------------------------------------------------------------------------------- |
no test coverage detected