(self, role: int = Qt.DisplayRole)
| 129 | return QJsonItem.Sep.join(paths) |
| 130 | |
| 131 | def data(self, role: int = Qt.DisplayRole) -> Any: |
| 132 | if role == self.PathRole: |
| 133 | return self.path |
| 134 | |
| 135 | return super().data(role) |
| 136 | |
| 137 | def setData(self, data: Any, role: int = Qt.EditRole): |
| 138 | super().setData(data, role) |
no outgoing calls