25 @param submodulePaths list of submodule paths |
25 @param submodulePaths list of submodule paths |
26 @type list of str |
26 @type list of str |
27 @param parent reference to the parent widget |
27 @param parent reference to the parent widget |
28 @type QWidget |
28 @type QWidget |
29 """ |
29 """ |
30 super(GitSubmodulesDeinitDialog, self).__init__(parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.submodulesList.addItems(sorted(submodulePaths)) |
33 self.submodulesList.addItems(sorted(submodulePaths)) |
34 |
34 |
35 self.buttonBox.button( |
35 self.buttonBox.button( |