28 @param project reference to the project object |
28 @param project reference to the project object |
29 @type Project |
29 @type Project |
30 @param parent reference to the parent widget |
30 @param parent reference to the parent widget |
31 @type QObject |
31 @type QObject |
32 """ |
32 """ |
33 super(BreakPointModel, self).__init__(parent) |
33 super().__init__(parent) |
34 |
34 |
35 self.__project = project |
35 self.__project = project |
36 |
36 |
37 self.breakpoints = [] |
37 self.breakpoints = [] |
38 self.header = [ |
38 self.header = [ |