Skip to content

Commit

Permalink
imageio arg fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrj committed Oct 14, 2023
1 parent d8dc69b commit 01ca506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/viser/_message_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _encode_image_base64(
data_buffer,
image[..., :3], # Strip alpha.
extension=".jpeg",
jpeg_quality=75 if jpeg_quality is None else jpeg_quality,
quality=75 if jpeg_quality is None else jpeg_quality,
)
else:
assert_never(format)
Expand Down

0 comments on commit 01ca506

Please sign in to comment.