src/eric7/MicroPython/ConvertToUF2Dialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
162 self.outputEdit.insertPlainText(self.tr("--- ERROR ---\n")) 162 self.outputEdit.insertPlainText(self.tr("--- ERROR ---\n"))
163 self.outputEdit.insertPlainText(out) 163 self.outputEdit.insertPlainText(out)
164 self.outputEdit.ensureCursorVisible() 164 self.outputEdit.ensureCursorVisible()
165 165
166 @pyqtSlot(int, QProcess.ExitStatus) 166 @pyqtSlot(int, QProcess.ExitStatus)
167 def __conversionFinished(self, exitCode, exitStatus): 167 def __conversionFinished(self, _exitCode, _exitStatus):
168 """ 168 """
169 Private slot handling the end of the conversion process. 169 Private slot handling the end of the conversion process.
170 170
171 @param exitCode exit code of the process 171 @param _exitCode exit code of the process (unused)
172 @type int 172 @type int
173 @param exitStatus exit status of the process 173 @param _exitStatus exit status of the process (unused)
174 @type QProcess.ExitStatus 174 @type QProcess.ExitStatus
175 """ 175 """
176 self.convertButton.setEnabled(True) 176 self.convertButton.setEnabled(True)

eric ide

mercurial