--- a/src/eric7/Debugger/DebugUI.py Wed May 24 17:28:58 2023 +0200 +++ b/src/eric7/Debugger/DebugUI.py Wed May 24 19:54:24 2023 +0200 @@ -1261,7 +1261,7 @@ """ self.__clientDebuggerIds.add(debuggerId) - def __clientLine(self, fn, line, debuggerId, threadName, forStack): + def __clientLine(self, fn, line, debuggerId, threadName, forStack): # noqa: U100 """ Private method to handle a change to the current line. @@ -1523,7 +1523,9 @@ else: self.__continue(debuggerId) - def __clientSignal(self, message, filename, lineNo, funcName, funcArgs, debuggerId): + def __clientSignal( + self, message, filename, lineNo, funcName, funcArgs, debuggerId # noqa: U100 + ): """ Private method to handle a signal generated on the client side. @@ -1657,7 +1659,7 @@ """ self.debugServer.remoteClientDisassembly(debuggerId) - def __clientBreakConditionError(self, filename, lineno, debuggerId): + def __clientBreakConditionError(self, filename, lineno, debuggerId): # noqa: U100 """ Private method to handle a condition error of a breakpoint. @@ -1715,7 +1717,7 @@ ) Preferences.Prefs.rsettings.sync() - def __clientWatchConditionError(self, cond, debuggerId): + def __clientWatchConditionError(self, cond, debuggerId): # noqa: U100 """ Private method to handle a expression error of a watch expression.