remove all children from the widget
(self)
| 487 | return self._parent |
| 488 | |
| 489 | def empty(self): |
| 490 | """remove all children from the widget""" |
| 491 | for k in list(self.children.keys()): |
| 492 | self.remove_child(self.children[k]) |
| 493 | |
| 494 | def remove_child(self, child): |
| 495 | """Removes a child instance from the Tag's children. |
no test coverage detected