61 enable &= bool(self.requirementsFilePicker.text()) |
61 enable &= bool(self.requirementsFilePicker.text()) |
62 |
62 |
63 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) |
63 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) |
64 |
64 |
65 @pyqtSlot(str) |
65 @pyqtSlot(str) |
66 def on_nameEdit_textChanged(self, txt): |
66 def on_nameEdit_textChanged(self, _txt): |
67 """ |
67 """ |
68 Private slot to handle changes of the logical name. |
68 Private slot to handle changes of the logical name. |
69 |
69 |
70 @param txt current text of the logical name entry |
70 @param _txt current text of the logical name entry (unused) |
71 @type str |
71 @type str |
72 """ |
72 """ |
73 self.__updateOK() |
73 self.__updateOK() |
74 |
74 |
75 @pyqtSlot(str) |
75 @pyqtSlot(str) |
76 def on_condaNameEdit_textChanged(self, txt): |
76 def on_condaNameEdit_textChanged(self, _txt): |
77 """ |
77 """ |
78 Private slot to handle changes of the conda name. |
78 Private slot to handle changes of the conda name. |
79 |
79 |
80 @param txt current text of the conda name entry |
80 @param _txt current text of the conda name entry (unused) |
81 @type str |
81 @type str |
82 """ |
82 """ |
83 self.__updateOK() |
83 self.__updateOK() |
84 |
84 |
85 @pyqtSlot(str) |
85 @pyqtSlot(str) |
86 def on_requirementsFilePicker_textChanged(self, txt): |
86 def on_requirementsFilePicker_textChanged(self, _txt): |
87 """ |
87 """ |
88 Private slot to handle changes of the requirements file name. |
88 Private slot to handle changes of the requirements file name. |
89 |
89 |
90 @param txt current text of the requirements file name entry |
90 @param _txt current text of the requirements file name entry (unused) |
91 @type str |
91 @type str |
92 """ |
92 """ |
93 self.__updateOK() |
93 self.__updateOK() |
94 |
94 |
95 def getData(self): |
95 def getData(self): |