(self)
| 159 | class CT_RegularTextRun(ElementBase): |
| 160 | """<a:r> custom element class""" |
| 161 | def _init(self): |
| 162 | _required_child(self, 'a:t') |
| 163 | |
| 164 | # child accessors ----------------- |
| 165 | t = property(lambda self: _child(self, 'a:t')) |
nothing calls this directly
no test coverage detected