|Relationships| instance holding the relationships for this part.
(self)
| 144 | |
| 145 | @lazyproperty |
| 146 | def rels(self): |
| 147 | """|Relationships| instance holding the relationships for this part.""" |
| 148 | # -- prevent breakage in `python-docx-template` by retaining legacy `._rels` attribute -- |
| 149 | self._rels = Relationships(self._partname.baseURI) |
| 150 | return self._rels |
| 151 | |
| 152 | def target_ref(self, rId: str) -> str: |
| 153 | """Return URL contained in target ref of relationship identified by `rId`.""" |
nothing calls this directly
no test coverage detected