(self)
| 198 | self.__attrs["start"] = value |
| 199 | |
| 200 | def to_xml(self) -> Element: |
| 201 | attrib = dict() |
| 202 | for key, value in self.__attrs.items(): |
| 203 | if value is not None: |
| 204 | attrib[key] = str(value) |
| 205 | parent = super().to_xml() |
| 206 | SubElement(parent, "String", attrib) |
| 207 | |
| 208 | return parent |