mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
24 lines
412 B
Python
24 lines
412 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.exec_()
|
|
#d.show()
|
|
#sys.exit(app.exec_())
|
|
|
|
|
|
__all__ = [
|
|
"InstallDialog",
|
|
"BootstrapRepos",
|
|
"run"
|
|
]
|