mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-04 13:40:54 +03:00
Add more parenthesis to make statement clearer
This commit is contained in:
parent
84b32a0388
commit
0704367952
|
@ -245,7 +245,7 @@ def _save_all(im, fp, filename):
|
|||
rawmode = ims.mode
|
||||
if ims.mode not in _VALID_WEBP_MODES:
|
||||
alpha = 'A' in ims.mode or 'a' in ims.mode \
|
||||
or ims.mode == 'P' and 'A' in ims.im.getpalettemode()
|
||||
or (ims.mode == 'P' and 'A' in ims.im.getpalettemode())
|
||||
rawmode = 'RGBA' if alpha else 'RGBX'
|
||||
frame = ims.convert(rawmode)
|
||||
|
||||
|
@ -298,7 +298,7 @@ def _save(im, fp, filename):
|
|||
|
||||
if im.mode not in _VALID_WEBP_LEGACY_MODES:
|
||||
alpha = 'A' in im.mode or 'a' in im.mode \
|
||||
or im.mode == 'P' and 'A' in im.im.getpalettemode()
|
||||
or (im.mode == 'P' and 'A' in im.im.getpalettemode())
|
||||
im = im.convert('RGBA' if alpha else 'RGB')
|
||||
|
||||
data = _webp.WebPEncode(
|
||||
|
|
Loading…
Reference in New Issue
Block a user