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