diff -r 8c3207703dac -r de4ae767b0e3 src/eric7/Debugger/DebugViewer.py --- a/src/eric7/Debugger/DebugViewer.py Wed May 24 17:28:58 2023 +0200 +++ b/src/eric7/Debugger/DebugViewer.py Wed May 24 19:54:24 2023 +0200 @@ -534,7 +534,7 @@ self.lvvStackComboBox.addItem("{0}:{1}:{2}".format(*s)) self.lvvStackComboBox.blockSignals(block) - def __clientLine(self, fn, line, debuggerId, threadName): + def __clientLine(self, fn, line, debuggerId, threadName): # noqa: U100 """ Private method to handle a change to the current line. @@ -583,7 +583,13 @@ self.__removeDebugger(debuggerId) def __clientSyntaxError( - self, message, filename, lineNo, characterNo, debuggerId, threadName + self, + message, # noqa: U100 + filename, # noqa: U100 + lineNo, # noqa: U100 + characterNo, # noqa: U100 + debuggerId, + threadName, ): """ Private method to handle a syntax error in the debugged program. @@ -605,7 +611,12 @@ self.__setThreadIconAndState(debuggerId, threadName, "syntax") def __clientException( - self, exceptionType, exceptionMessage, stackTrace, debuggerId, threadName + self, + exceptionType, # noqa: U100 + exceptionMessage, # noqa: U100 + stackTrace, # noqa: U100 + debuggerId, + threadName, ): """ Private method to handle an exception of the debugged program. @@ -753,7 +764,7 @@ if frameNo >= 0: self.lvvStackComboBox.setCurrentIndex(frameNo) - def __debuggerSelected(self, current, previous): + def __debuggerSelected(self, current, previous): # noqa: U100 """ Private slot to handle the selection of a debugger backend in the debuggers list.