src/eric7/Debugger/BreakPointModel.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 11037
adfda913834a
--- 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

eric ide

mercurial