src/eric7/Debugger/BreakPointModel.py

branch
eric7
changeset 10065
de4ae767b0e3
parent 9653
e67609152c5e
child 10417
c6011e501282
--- a/src/eric7/Debugger/BreakPointModel.py	Wed May 24 17:28:58 2023 +0200
+++ b/src/eric7/Debugger/BreakPointModel.py	Wed May 24 19:54:24 2023 +0200
@@ -69,7 +69,7 @@
 
         self.breakpoints = []
 
-    def columnCount(self, parent=None):
+    def columnCount(self, parent=None):  # noqa: U100
         """
         Public method to get the current column count.
 
@@ -145,7 +145,7 @@
 
         return None
 
-    def setData(self, index, value, role=Qt.ItemDataRole.EditRole):
+    def setData(self, index, value, role=Qt.ItemDataRole.EditRole):  # noqa: U100
         """
         Public method to change data in the model.
 
@@ -232,7 +232,7 @@
 
         return self.createIndex(row, column, self.breakpoints[row])
 
-    def parent(self, index):
+    def parent(self, index):  # noqa: U100
         """
         Public method to get the parent index.
 

eric ide

mercurial