23 |
23 |
24 @param relPath initial package path relative to the project root |
24 @param relPath initial package path relative to the project root |
25 (string) |
25 (string) |
26 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |
27 """ |
27 """ |
28 super(NewPythonPackageDialog, self).__init__(parent) |
28 super().__init__(parent) |
29 self.setupUi(self) |
29 self.setupUi(self) |
30 |
30 |
31 self.okButton = self.buttonBox.button( |
31 self.okButton = self.buttonBox.button( |
32 QDialogButtonBox.StandardButton.Ok) |
32 QDialogButtonBox.StandardButton.Ok) |
33 self.okButton.setEnabled(False) |
33 self.okButton.setEnabled(False) |