ayon-core/igniter/__init__.py
2020-09-17 09:56:17 +02:00

14 lines
250 B
Python

# -*- coding: utf-8 -*-
"""Open install dialog."""
import sys
from Qt import QtWidgets
from .install_dialog import InstallDialog
def run():
app = QtWidgets.QApplication(sys.argv)
d = InstallDialog()
d.show()
sys.exit(app.exec_())