23 |
23 |
24 @param branches branch names to populate the branch list with |
24 @param branches branch names to populate the branch list with |
25 (list of string) |
25 (list of string) |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(HgBranchInputDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.branchComboBox.addItems(sorted(branches)) |
31 self.branchComboBox.addItems(sorted(branches)) |
32 self.branchComboBox.setEditText("") |
32 self.branchComboBox.setEditText("") |
33 |
33 |