Renders the HTML representation of the element.
(self, **kwargs)
| 1081 | ) # noqa |
| 1082 | |
| 1083 | def render(self, **kwargs): |
| 1084 | """Renders the HTML representation of the element.""" |
| 1085 | self.style_data() |
| 1086 | super().render(**kwargs) |
| 1087 | |
| 1088 | def get_bounds(self) -> TypeBoundsReturn: |
| 1089 | """ |
nothing calls this directly
no test coverage detected