diff -r e6c9ab1dc168 -r f46c1e224e8a src/eric7/JediInterface/JediServer.py --- a/src/eric7/JediInterface/JediServer.py Tue Apr 02 10:13:41 2024 +0200 +++ b/src/eric7/JediInterface/JediServer.py Wed Apr 24 10:14:16 2024 +0200 @@ -165,13 +165,13 @@ source = editor.text() return filename, line, index, source - def requestCompletions(self, editor, context, acText): # noqa: U100 + def requestCompletions(self, editor, _context, acText): """ Public method to request a list of possible completions. @param editor reference to the editor object, that called this method @type Editor - @param context flag indicating to autocomplete a context + @param _context flag indicating to autocomplete a context (unused) @type bool @param acText text to be completed @type str @@ -225,15 +225,15 @@ if editor is not None: editor.completionsListReady(names, result["CompletionText"]) - def getCallTips(self, editor, pos, commas): # noqa: U100 + def getCallTips(self, editor, _pos, _commas): """ Public method to calculate calltips. @param editor reference to the editor object, that called this method @type Editor - @param pos position in the text for the calltip + @param _pos position in the text for the calltip (unused) @type int - @param commas minimum number of commas contained in the calltip + @param _commas minimum number of commas contained in the calltip (unused) @type int @return list of possible calltips @rtype list of str