Remove this group from it's parent. This is effectively a deletion :rtype: None
(self)
| 599 | return [] |
| 600 | |
| 601 | def remove_from_parent(self): |
| 602 | """ |
| 603 | Remove this group from it's parent. This is effectively a deletion |
| 604 | :rtype: None |
| 605 | """ |
| 606 | if self.parent: |
| 607 | self.parent.subgroups = [g for g in self.parent.subgroups if g != self] |
| 608 | |
| 609 | def all_parents(self): |
| 610 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected