Remove relationship identified by `rId`.
(self, rId: str)
| 82 | return cls(pkg_file)._load() |
| 83 | |
| 84 | def drop_rel(self, rId: str) -> None: |
| 85 | """Remove relationship identified by `rId`.""" |
| 86 | self._rels.pop(rId) |
| 87 | |
| 88 | def iter_parts(self) -> Iterator[Part]: |
| 89 | """Generate exactly one reference to each part in the package.""" |