32 @param taglist list of previously entered tags (list of strings) |
32 @param taglist list of previously entered tags (list of strings) |
33 @param revision revision to set tag for (string) |
33 @param revision revision to set tag for (string) |
34 @param tagName name of the tag (string) |
34 @param tagName name of the tag (string) |
35 @param parent parent widget (QWidget) |
35 @param parent parent widget (QWidget) |
36 """ |
36 """ |
37 super(GitTagDialog, self).__init__(parent) |
37 super().__init__(parent) |
38 self.setupUi(self) |
38 self.setupUi(self) |
39 |
39 |
40 self.okButton = self.buttonBox.button( |
40 self.okButton = self.buttonBox.button( |
41 QDialogButtonBox.StandardButton.Ok) |
41 QDialogButtonBox.StandardButton.Ok) |
42 self.okButton.setEnabled(False) |
42 self.okButton.setEnabled(False) |