77 @type list of str |
77 @type list of str |
78 @param configOverride dictionary containing the global config override |
78 @param configOverride dictionary containing the global config override |
79 data |
79 data |
80 @type dict |
80 @type dict |
81 """ |
81 """ |
82 super(StartDialog, self).__init__(parent) |
82 super().__init__(parent) |
83 self.setModal(True) |
83 self.setModal(True) |
84 |
84 |
85 self.dialogType = dialogType |
85 self.dialogType = dialogType |
86 if dialogType == 0: |
86 if dialogType == 0: |
87 from .Ui_StartDebugDialog import Ui_StartDebugDialog |
87 from .Ui_StartDebugDialog import Ui_StartDebugDialog |