--- 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():