src/eric7/JediInterface/JediServer.py

branch
eric7-maintenance
changeset 10694
f46c1e224e8a
parent 10534
783d835d7fe4
parent 10683
779cda568acb
child 10873
4e8e63df7893
--- 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

eric ide

mercurial