83 if parent.isValid(): |
83 if parent.isValid(): |
84 return 0 |
84 return 0 |
85 else: |
85 else: |
86 return self.__manager.enginesCount() |
86 return self.__manager.enginesCount() |
87 |
87 |
88 def columnCount(self, parent=None): |
88 def columnCount(self, parent=None): # noqa: U100 |
89 """ |
89 """ |
90 Public method to get the number of columns of the model. |
90 Public method to get the number of columns of the model. |
91 |
91 |
92 @param parent parent index (QModelIndex) (Unused) |
92 @param parent parent index (QModelIndex) (Unused) |
93 @return number of columns (integer) |
93 @return number of columns (integer) |