(self, stream, kind=None)
| 49 | return f"{units}mm" |
| 50 | |
| 51 | def save(self, stream, kind=None): |
| 52 | self.check_kind(kind=kind) |
| 53 | self._write(stream) |
| 54 | |
| 55 | def to_string(self, **kwargs): |
| 56 | return ET.tostring(self._img, **kwargs) |
nothing calls this directly
no test coverage detected