--- a/src/eric7/Debugger/DebugServer.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Debugger/DebugServer.py Sat Apr 20 18:01:36 2024 +0200 @@ -1608,7 +1608,7 @@ @type int @param maxSize maximum size the formatted value of a variable will be shown. If it is bigger than that, a 'too big' indication will - be given (@@TOO_BIG_TO_SHOW@@). + be given (@@TOO_BIG_TO_SHOW@@). (unused) @type int """ self.debuggerInterface.remoteClientVariable( @@ -2007,9 +2007,7 @@ self.__debuggerInterfaceRegistry[clientType][0] = capabilities self.clientCapabilities.emit(capabilities, clientType, venvName) - def signalClientCompletionList( - self, completionList, text, debuggerId # noqa: U100 - ): + def signalClientCompletionList(self, completionList, text, _debuggerId): """ Public method to process the client auto completion info. @@ -2017,7 +2015,7 @@ @type list of str @param text the text to be completed @type str - @param debuggerId ID of the debugger backend + @param _debuggerId ID of the debugger backend (unused) @type str """ self.clientCompletionList.emit(completionList, text)