MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / markup

Method markup

src/bcf/bcf/v2/topic.py:39–44  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

37
38 @property
39 def markup(self) -> Optional[mdl.Markup]:
40 if not self._markup:
41 markup_path = self._topic_dir.joinpath("markup.bcf")
42 if markup_path.exists():
43 self._markup = self._xml_handler.parse(markup_path.read_bytes(), mdl.Markup)
44 return self._markup
45
46 @markup.setter
47 def markup(self, value: mdl.Markup) -> None:

Callers

nothing calls this directly

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected