(self, style_args: StyleArg)
| 791 | return f"{self.__class__.__name__}: {self.data}" |
| 792 | |
| 793 | def to_html(self, style_args: StyleArg) -> str: |
| 794 | return ( |
| 795 | self.indent |
| 796 | + f"<div class='{self.group_label}'{self.get_inline_style(style_args)}>\n" |
| 797 | + "\n".join([shape.to_html(style_args) for shape in self.data]) |
| 798 | + "\n" |
| 799 | + self.indent |
| 800 | + "</div>\n" |
| 801 | ) |
| 802 | |
| 803 | |
| 804 | class FreeShape(ShapeElement): |
nothing calls this directly
no test coverage detected