ayon-core/igniter/__init__.py
Ondrej Samohel 946c93ad5d
igniter UI improvements
simplifying installation
2021-03-02 13:38:53 +01:00

23 lines
394 B
Python

# -*- coding: utf-8 -*-
"""Open install dialog."""
import sys
from Qt import QtWidgets
from .install_dialog import InstallDialog
from .bootstrap_repos import BootstrapRepos
def run():
"""Show Igniter dialog."""
app = QtWidgets.QApplication(sys.argv)
d = InstallDialog()
d.show()
sys.exit(app.exec_())
__all__ = [
"InstallDialog",
"BootstrapRepos",
"run"
]