Return a reference to the |Relationships| instance holding the collection of relationships for this package.
(self)
| 152 | |
| 153 | @lazyproperty |
| 154 | def rels(self): |
| 155 | """Return a reference to the |Relationships| instance holding the collection of |
| 156 | relationships for this package.""" |
| 157 | return Relationships(PACKAGE_URI.baseURI) |
| 158 | |
| 159 | def save(self, pkg_file: str | IO[bytes]): |
| 160 | """Save this package to `pkg_file`. |
nothing calls this directly
no test coverage detected