Return True is this Resource has siblings.
(self, codebase)
| 1514 | return parent_path and codebase.get_resource(parent_path) |
| 1515 | |
| 1516 | def has_siblings(self, codebase): |
| 1517 | """ |
| 1518 | Return True is this Resource has siblings. |
| 1519 | """ |
| 1520 | return self.has_parent() and self.parent(codebase).has_children() |
| 1521 | |
| 1522 | def siblings(self, codebase): |
| 1523 | """ |
nothing calls this directly
no test coverage detected