Skip to content

Commit

Permalink
Remove a forgotten 'pass' instruction...
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Mar 9, 2021
1 parent eb7090f commit 6c0afcb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion yoga/image/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ def optimize(input_file, output_file, options={}, verbose=False, quiet=False):
output_image_bytes = pyguetzli.process_pil_image(
image, int(options["jpeg_quality"] * 100))
else:
pass
image_io = io.BytesIO()
image.save(image_io, format="PNG", optimize=False)
image_io.seek(0)
Expand Down

0 comments on commit 6c0afcb

Please sign in to comment.