(self, path)
| 90 | return state, n_checked |
| 91 | |
| 92 | def add_item(self, path): |
| 93 | item = QStandardItem(path) |
| 94 | item.setCheckable(True) |
| 95 | item.setCheckState(QtCore.Qt.Checked) |
| 96 | self.model.appendRow(item) |
| 97 | |
| 98 | def clear(self): |
| 99 | self.model.removeRows(0, self.model.rowCount()) |
no outgoing calls
no test coverage detected