Results 1 comments of sagnak

this was my temporary workaround with monkey-patching till the bug-fix: ``` def jpeg_encode_without_filename(self: JPEG, obj: Image.Image) -> bytes: self._validate(obj, Image.Image) # pylint: disable=protected-access out = BytesIO() obj.save(out, format="JPEG") return out.getvalue()...