| | |
| | | from PyQt5.QtWidgets import QApplication |
| | | from asyncqt import QEventLoop |
| | | from widgets.flash_bootloader_widget import FlashBootloaderWidget |
| | | # from widgets.data_identifier_widget import DataIdentifierWidget |
| | | # from widgets.diagnostic_trouble_code_widget import DiagnosticTroubleCodeWidget |
| | | # from widgets.main_widget import MainWidget |
| | | from widgets.data_identifier_widget import DataIdentifierWidget |
| | | from widgets.diagnostic_trouble_code_widget import DiagnosticTroubleCodeWidget |
| | | from widgets.main_widget import MainWidget |
| | | |
| | | if __name__ == '__main__': |
| | | |
| | |
| | | asyncio.set_event_loop(loop) |
| | | |
| | | # w = MainWidget() |
| | | w = FlashBootloaderWidget() |
| | | # w = DataIdentifierWidget() |
| | | # w = FlashBootloaderWidget() |
| | | w = DataIdentifierWidget() |
| | | # w = DiagnosticTroubleCodeWidget() |
| | | w.show() |
| | | |