Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix ...
Browse files Browse the repository at this point in the history
  • Loading branch information
felix committed Oct 14, 2019
1 parent 1c173aa commit b80ce79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/preprocessor/io_utils/webp.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from PIL import Image

def encode_video(images: List['np.ndarray'], frame_rate: int, pix_fmt: str = 'rgb24'):
height, width, channels = images[0].shape
height, width, _ = images[0].shape
if pix_fmt == 'rgb24':
pix_fmt = 'RGB'
# Save an animation
Expand Down

0 comments on commit b80ce79

Please sign in to comment.