src/eric7/QScintilla/Shell.py

branch
eric7
changeset 10683
779cda568acb
parent 10658
353fbc65a79e
child 10692
9becf9ca115c
diff -r 47be220abdaf -r 779cda568acb src/eric7/QScintilla/Shell.py
--- a/src/eric7/QScintilla/Shell.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/QScintilla/Shell.py	Sat Apr 20 18:01:36 2024 +0200
@@ -1700,29 +1700,29 @@
                 elif cmd == QsciScintilla.SCI_LINESCROLLDOWN:
                     self.__QScintillaHistoryDown(cmd)
 
-    def __QScintillaLineUp(self, cmd):  # noqa: U100
+    def __QScintillaLineUp(self, _cmd):
         """
         Private method to handle the cursor up command.
 
-        @param cmd QScintilla command
+        @param _cmd QScintilla command (unused)
         @type int
         """
         self.SendScintilla(QsciScintilla.SCI_LINEUP)
 
-    def __QScintillaLineDown(self, cmd):  # noqa: U100
+    def __QScintillaLineDown(self, _cmd):
         """
         Private method to handle the cursor down command.
 
-        @param cmd QScintilla command
+        @param _cmd QScintilla command (unused)
         @type int
         """
         self.SendScintilla(QsciScintilla.SCI_LINEDOWN)
 
-    def __QScintillaHistoryUp(self, cmd):  # noqa: U100
+    def __QScintillaHistoryUp(self, _cmd):
         """
         Private method to handle the history up command.
 
-        @param cmd QScintilla command
+        @param _cmd QScintilla command (unused)
         @type int
         """
         if self.isHistoryEnabled():
@@ -1764,11 +1764,11 @@
                         self.__setHistoryIndex(index=self.__histidx - 1)
                         self.__useHistory()
 
-    def __QScintillaHistoryDown(self, cmd):  # noqa: U100
+    def __QScintillaHistoryDown(self, _cmd):
         """
         Private method to handle the history down command.
 
-        @param cmd QScintilla command
+        @param _cmd QScintilla command (unused)
         @type int
         """
         if self.isHistoryEnabled():

eric ide

mercurial