diff -r d1a603a70f83 -r 9becf9ca115c src/eric7/Testing/TestingWidget.py --- a/src/eric7/Testing/TestingWidget.py Tue Apr 23 09:29:13 2024 +0200 +++ b/src/eric7/Testing/TestingWidget.py Tue Apr 23 11:26:04 2024 +0200 @@ -685,11 +685,11 @@ self.activateWindow() @pyqtSlot(bool) - def on_discoverCheckBox_toggled(self, checked): + def on_discoverCheckBox_toggled(self, _checked): """ Private slot handling state changes of the 'discover' checkbox. - @param checked state of the checkbox + @param _checked state of the checkbox (unused) @type bool """ if not bool(self.discoveryPicker.currentText()): @@ -1170,12 +1170,12 @@ self.__resultsModel.updateTestResults([result]) @pyqtSlot(list, str) - def __testProcessFinished(self, results, output): + def __testProcessFinished(self, _results, output): """ Private slot to handle the 'testFinished' signal of the executor. - @param results list of test result objects (if not sent via the - 'testResult' signal + @param _results list of test result objects (if not sent via the + 'testResult' signal) (unused) @type list of TestResult @param output string containing the test process output (if any) @type str @@ -1617,11 +1617,11 @@ self.__cw.setTestFile(testfile) - def eventFilter(self, obj, event): + def eventFilter(self, _obj, event): """ Public method to filter events. - @param obj reference to the object the event is meant for + @param _obj reference to the object the event is meant for (unused) @type QObject @param event reference to the event object @type QEvent