Return the GUID of the topic.
(self)
| 54 | |
| 55 | @property |
| 56 | def guid(self) -> str: |
| 57 | """Return the GUID of the topic.""" |
| 58 | if self._markup: |
| 59 | return self.topic.guid |
| 60 | return self._topic_dir.name if self._topic_dir else "" |
| 61 | |
| 62 | @property |
| 63 | def header(self) -> Optional[mdl.Header]: |
no outgoing calls
no test coverage detected