mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 19:23:58 +08:00
* add openpilot prefix to imports * more * more * fix docs * fix linter * bump submodules * fix patched tests * update dynamic imports * debug * Revert "debug" This reverts commit db5e13b9911cc74438bee123bc3430da6c31b24b. * fix pm test
15 lines
352 B
Python
Executable File
15 lines
352 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from PyQt5.QtWidgets import QApplication, QLabel # pylint: disable=no-name-in-module, import-error
|
|
from openpilot.selfdrive.ui.qt.python_helpers import set_main_window
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication([])
|
|
label = QLabel('Hello World!')
|
|
|
|
# Set full screen and rotate
|
|
set_main_window(label)
|
|
|
|
app.exec_()
|