diff --git a/rembg/commands/b_command.py b/rembg/commands/b_command.py index 6fb1fa67..402e17ed 100644 --- a/rembg/commands/b_command.py +++ b/rembg/commands/b_command.py @@ -135,7 +135,7 @@ def b_command( if not os.path.isdir(output_dir): os.makedirs(output_dir, exist_ok=True) - def img_to_byte_array(img: PIL.Image) -> bytes: + def img_to_byte_array(img: PIL.Image.Image) -> bytes: buff = io.BytesIO() img.save(buff, format="PNG") return buff.getvalue()