Defaults to removing last label, but any index can be supplied
(self, index=-1)
| 485 | self._paths[idx_level_min] = path |
| 486 | |
| 487 | def pop_label(self, index=-1): |
| 488 | """Defaults to removing last label, but any index can be supplied""" |
| 489 | self.labelCValues.pop(index) |
| 490 | t = self.labelTexts.pop(index) |
| 491 | t.remove() |
| 492 | |
| 493 | def labels(self, inline, inline_spacing): |
| 494 | for idx, (icon, lev, cvalue) in enumerate(zip( |
no test coverage detected