160 |
160 |
161 @param category reference to the category item |
161 @param category reference to the category item |
162 @type QTreeWidgetItem |
162 @type QTreeWidgetItem |
163 """ |
163 """ |
164 categoryDir = category.data(0, Qt.ItemDataRole.UserRole) |
164 categoryDir = category.data(0, Qt.ItemDataRole.UserRole) |
165 shutil.rmtree(categoryDir, True) |
165 shutil.rmtree(categoryDir, ignore_errors=True) |
166 |
166 |
167 self.documentationList.takeTopLevelItem( |
167 self.documentationList.takeTopLevelItem( |
168 self.documentationList.indexOfTopLevelItem(category) |
168 self.documentationList.indexOfTopLevelItem(category) |
169 ) |
169 ) |
170 del category |
170 del category |