(self)
| 137 | class CT_PositiveSize2D(ElementBase): |
| 138 | """<a:ext>""" |
| 139 | def _init(self): |
| 140 | _required_attribute(self, 'cx', default='0') |
| 141 | _required_attribute(self, 'cy', default='0') |
| 142 | |
| 143 | # attribute accessors ------------- |
| 144 | cx = property(lambda self: self.get('cx'), |
nothing calls this directly
no test coverage detected