(self, index=QModelIndex())
| 41 | self.tasks.append(task) |
| 42 | |
| 43 | def rowCount(self, index=QModelIndex()): |
| 44 | if index.isValid(): |
| 45 | return 0 |
| 46 | return len(self.tasks) |
| 47 | |
| 48 | def columnCount(self, index=QModelIndex()): # pylint: disable=no-self-use |
| 49 | if index.isValid(): |
no test coverage detected