--- a/src/eric7/Debugger/DebugServer.py Wed Apr 10 17:03:56 2024 +0200 +++ b/src/eric7/Debugger/DebugServer.py Wed May 15 10:45:50 2024 +0200 @@ -558,7 +558,7 @@ if project.isDebugPropertiesLoaded(): ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemoteForProject( self.serverPort(), @@ -575,7 +575,7 @@ ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemote( self.serverPort(), @@ -589,7 +589,7 @@ else: ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemote( self.serverPort(), @@ -1640,7 +1640,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( @@ -2040,9 +2040,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. @@ -2050,7 +2048,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)