27 @param submodulePaths list of submodule paths |
27 @param submodulePaths list of submodule paths |
28 @type list of str |
28 @type list of str |
29 @param parent reference to the parent widget |
29 @param parent reference to the parent widget |
30 @type QWidget |
30 @type QWidget |
31 """ |
31 """ |
32 super(GitSubmodulesUpdateOptionsDialog, self).__init__(parent) |
32 super().__init__(parent) |
33 self.setupUi(self) |
33 self.setupUi(self) |
34 |
34 |
35 self.submodulesList.addItems(sorted(submodulePaths)) |
35 self.submodulesList.addItems(sorted(submodulePaths)) |
36 |
36 |
37 def getData(self): |
37 def getData(self): |