--- a/src/eric7/Project/NewPythonPackageDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Project/NewPythonPackageDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -17,40 +17,40 @@ """ Class implementing a dialog to add a new Python package. """ + def __init__(self, relPath, parent=None): """ Constructor - + @param relPath initial package path relative to the project root (string) @param parent reference to the parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) - - self.okButton = self.buttonBox.button( - QDialogButtonBox.StandardButton.Ok) + + self.okButton = self.buttonBox.button(QDialogButtonBox.StandardButton.Ok) self.okButton.setEnabled(False) - + rp = relPath.replace("/", ".").replace("\\", ".") self.packageEdit.setText(rp) - + msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height()) - + @pyqtSlot(str) def on_packageEdit_textChanged(self, txt): """ Private slot called, when the package name is changed. - + @param txt new text of the package name edit (string) """ self.okButton.setEnabled(txt != "") - + def getData(self): """ Public method to retrieve the data entered into the dialog. - + @return package name (string) """ return self.packageEdit.text()