src/eric7/JediInterface/JediServer.py

branch
eric7
changeset 10683
779cda568acb
parent 10526
2549534fcb55
child 10694
f46c1e224e8a
child 10850
d835f48b9908
--- a/src/eric7/JediInterface/JediServer.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/JediInterface/JediServer.py	Sat Apr 20 18:01:36 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