diff -r 47be220abdaf -r 779cda568acb src/eric7/Debugger/BreakPointModel.py --- a/src/eric7/Debugger/BreakPointModel.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Debugger/BreakPointModel.py Sat Apr 20 18:01:36 2024 +0200 @@ -73,7 +73,7 @@ """ Public method to get the current column count. - @param parent reference to parent index (Unused) + @param parent reference to parent index (unused) @type QModelIndex @return column count @rtype int @@ -153,7 +153,7 @@ @type QModelIndex @param value value of the changed data @type any - @param role role of the changed data + @param role role of the changed data (unused) @type Qt.ItemDataRole @return flag indicating success @rtype bool @@ -232,11 +232,11 @@ return self.createIndex(row, column, self.breakpoints[row]) - def parent(self, index): # noqa: U100 + def parent(self, _index): """ Public method to get the parent index. - @param index index of item to get parent + @param _index index of item to get parent (unused) @type QModelIndex @return index of parent @rtype QModelIndex