(element, **attributes)
| 51 | |
| 52 | |
| 53 | def _set_attributes(element, **attributes): |
| 54 | for key, value in attributes.items(): |
| 55 | element.setAttribute(key, value) |
| 56 | |
| 57 | |
| 58 | def create_svg_object(with_doctype=False) -> xml.dom.minidom.Document: |
no outgoing calls
no test coverage detected