src/eric7/Debugger/BreakPointModel.py

branch
eric7
changeset 11148
15e30f0c76a8
parent 11090
f5f5f5803935
equal deleted inserted replaced
11147:dee6e106b4d3 11148:15e30f0c76a8
67 67
68 self.__project = project 68 self.__project = project
69 69
70 self.breakpoints = [] 70 self.breakpoints = []
71 71
72 def columnCount(self, parent=None): # noqa: U100 72 def columnCount(self, parent=None): # noqa: U-100
73 """ 73 """
74 Public method to get the current column count. 74 Public method to get the current column count.
75 75
76 @param parent reference to parent index (unused) 76 @param parent reference to parent index (unused)
77 @type QModelIndex 77 @type QModelIndex
143 ): 143 ):
144 return BreakPointModel.Alignments[index.column()].value 144 return BreakPointModel.Alignments[index.column()].value
145 145
146 return None 146 return None
147 147
148 def setData(self, index, value, role=Qt.ItemDataRole.EditRole): # noqa: U100 148 def setData(self, index, value, role=Qt.ItemDataRole.EditRole): # noqa: U-100
149 """ 149 """
150 Public method to change data in the model. 150 Public method to change data in the model.
151 151
152 @param index index of the changed data 152 @param index index of the changed data
153 @type QModelIndex 153 @type QModelIndex

eric ide

mercurial