diff -r e6c9ab1dc168 -r f46c1e224e8a src/eric7/Testing/TestingWidget.py --- a/src/eric7/Testing/TestingWidget.py Tue Apr 02 10:13:41 2024 +0200 +++ b/src/eric7/Testing/TestingWidget.py Wed Apr 24 10:14:16 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 @@ -1495,13 +1495,13 @@ ) self.sbLabel.clear() - def __testDiscoveryProcessFinished(self, results, output): # noqa: U100 + def __testDiscoveryProcessFinished(self, _results, output): """ Private slot to handle the 'testFinished' signal of the executor in discovery mode. - @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