Return a list containing a reference to each of the parts in this package.
(self)
| 138 | |
| 139 | @property |
| 140 | def parts(self) -> list[Part]: |
| 141 | """Return a list containing a reference to each of the parts in this package.""" |
| 142 | return list(self.iter_parts()) |
| 143 | |
| 144 | def relate_to(self, part: Part, reltype: str): |
| 145 | """Return rId key of new or existing relationship to `part`. |
nothing calls this directly
no test coverage detected