src/eric7/Plugins/VcsPlugins/vcsGit/GitRemoteRepositoriesDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
216 self.__finish() 216 self.__finish()
217 elif button == self.refreshButton: 217 elif button == self.refreshButton:
218 self.on_refreshButton_clicked() 218 self.on_refreshButton_clicked()
219 219
220 @pyqtSlot(int, QProcess.ExitStatus) 220 @pyqtSlot(int, QProcess.ExitStatus)
221 def __procFinished(self, exitCode, exitStatus): 221 def __procFinished(self, _exitCode, _exitStatus):
222 """ 222 """
223 Private slot connected to the finished signal. 223 Private slot connected to the finished signal.
224 224
225 @param exitCode exit code of the process 225 @param _exitCode exit code of the process (unused)
226 @type int 226 @type int
227 @param exitStatus exit status of the process 227 @param _exitStatus exit status of the process (unused)
228 @type QProcess.ExitStatus 228 @type QProcess.ExitStatus
229 """ 229 """
230 self.__finish() 230 self.__finish()
231 231
232 def __readStdout(self): 232 def __readStdout(self):

eric ide

mercurial