diff -r e6c9ab1dc168 -r f46c1e224e8a src/eric7/Debugger/DebugServer.py --- a/src/eric7/Debugger/DebugServer.py Tue Apr 02 10:13:41 2024 +0200 +++ b/src/eric7/Debugger/DebugServer.py Wed Apr 24 10:14:16 2024 +0200 @@ -551,7 +551,7 @@ if project.isDebugPropertiesLoaded(): ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemoteForProject( self.serverPort(), @@ -567,7 +567,7 @@ ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemote( self.serverPort(), @@ -580,7 +580,7 @@ else: ( self.clientProcess, - isNetworked, + _isNetworked, clientInterpreter, ) = self.debuggerInterface.startRemote( self.serverPort(), @@ -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)