mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
12 lines
222 B
Python
12 lines
222 B
Python
# -*- coding: utf-8 -*-
|
|
"""Open install dialog."""
|
|
|
|
import sys
|
|
from Qt import QtWidgets
|
|
|
|
from .install_dialog import InstallDialog
|
|
|
|
app = QtWidgets.QApplication(sys.argv)
|
|
d = InstallDialog()
|
|
d.show()
|
|
sys.exit(app.exec_())
|