Return True is this Resource has a parent.
(self)
| 1495 | return sorted((c for c in children if c), key=_sorter) |
| 1496 | |
| 1497 | def has_parent(self): |
| 1498 | """ |
| 1499 | Return True is this Resource has a parent. |
| 1500 | """ |
| 1501 | return not self.is_root |
| 1502 | |
| 1503 | def parent_path(self): |
| 1504 | """ |
no outgoing calls
no test coverage detected