--- a/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Preferences/ConfigurationPages/DebuggerGeneralPage.py Sat Apr 20 18:01:36 2024 +0200 @@ -416,11 +416,11 @@ return self.createIndex(row, column, None) - def parent(self, child): # noqa: U100 + def parent(self, _child): """ Public Qt slot to get the parent of the given child. - @param child the model child node + @param _child the model child node (unused) @type QModelIndex @return new model index for parent @rtype QModelIndex @@ -431,7 +431,7 @@ """ Public Qt slot to get the column count. - @param parent the model parent + @param parent the model parent (unused) @type QModelIndex @return number of columns @rtype int @@ -442,18 +442,18 @@ """ Public Qt slot to get the row count. - @param parent the model parent + @param parent the model parent (unused) @type QModelIndex @return number of rows @rtype int """ return 4 - def flags(self, index): # noqa: U100 + def flags(self, _index): """ Public Qt slot to get the item flags. - @param index of item + @param _index of item (unused) @type QModelIndex @return item flags @rtype QtCore.Qt.ItemFlag @@ -482,11 +482,11 @@ return None -def create(dlg): # noqa: U100 +def create(_dlg): """ Module function to create the configuration page. - @param dlg reference to the configuration dialog + @param _dlg reference to the configuration dialog (unused) @type ConfigurationDialog @return reference to the instantiated page @rtype ConfigurationPageBase