(self, shape_elm: ShapeElement, parent: ProvidesPart)
| 25 | """ |
| 26 | |
| 27 | def __init__(self, shape_elm: ShapeElement, parent: ProvidesPart): |
| 28 | super().__init__() |
| 29 | self._element = shape_elm |
| 30 | self._parent = parent |
| 31 | |
| 32 | def __eq__(self, other: object) -> bool: |
| 33 | """|True| if this shape object proxies the same element as *other*. |